PHP –获取目录的大小
在 PHP 中获取目录大小的最佳方法是什么?我正在寻找一种轻量级的方法来执行此操作,因为我将使用它的目录非常巨大。
SO 上已经有一个关于此的问题,但它已经存在三年了,而且解决方案已经过时了(现在,出于安全原因,fopen
已被禁用。)
What is the best way to get the size of a directory in PHP? I'm looking for a lightweight way to do this since the directories I'll use this for are pretty huge.
There already was a question about this on SO, but it's three years old and the solutions are outdated.(Nowadays fopen
is disabled for security reasons.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 RecursiveDirectoryIterator 吗?
Is the RecursiveDirectoryIterator available to you?
您可以尝试使用 unix 命令 du:
$output =
du -s $folder
;执行运算符。来自: http://www.darian-brown.com/get-php- directory-size/
或者编写一个自定义函数来合计目录中所有文件的文件大小:
You could try the execution operator with the unix command du:
$output =
du -s $folder
;FROM: http://www.darian-brown.com/get-php-directory-size/
Or write a custom function to total the filesize of all the files in the directory: