您将如何du -s
使用 PHP 解析 linux 命令的输出,以便获得以千字节为单位的磁盘使用情况?
示例输出来自du -s
:
du: cannot access `./proc/11918/task/11918/fd/4': No such file or directory
du: cannot access `./proc/11918/task/11918/fdinfo/4': No such file or directory
du: cannot access `./proc/11918/fd/4': No such file or directory
du: cannot access `./proc/11918/fdinfo/4': No such file or directory
223816 .
所需的 PHP 结果:
223816
我曾考虑过使用explode 和count 来获取最后一行,然后剥离除数字之外的所有内容......但我确信在某个地方有更有效的方法。