如何获取服务器上的磁盘空间?
我应该为一家公司用 php 开发一个 Web 应用程序,并且我需要知道服务器的磁盘可用空间。
目前,我能够获得此类可用磁盘空间:
$quota="104857600"; //100Mb : (100*1024*1024)
之后,我计算 $quota 和我的大小变量之间的差异。
所以,在这种情况下,我必须直接在php文件中写入磁盘大小...
可以做磁盘容量吗?
I should to develop a web-application in php for a firm, and I need to know the disk free space of the server.
At the moment, I'm able to obtain the free disk space of this kind :
$quota="104857600"; //100Mb : (100*1024*1024)
after, I do the difference between $quota and my size variable.
So, in this case, I must to write the disk size directly in the php file...
It's possible to do the disk capacity ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
disk_free_space - 将返回可用字节数文件系统或磁盘分区。
disk_total_space - 将返回总字节数(即容量)在文件系统或磁盘分区上。
disk_free_space - Will return you the number of bytes available on the filesystem or disk partition.
disk_total_space - Will return you the number of total bytes (i.e. capacity) on the filesystem or disk partition.
尝试使用
disk_total_space
函数http://php. net/manual/en/function.disk-total-space.php
Try
disk_total_space
functionhttp://php.net/manual/en/function.disk-total-space.php
你可以尝试 disk_free_space()
you can try disk_free_space()
您可以使用 disk_free_space
You can use disk_free_space