How to get the disk space on a server?

放肆的年华 提交于 2019-11-27 18:22:10

问题


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 ?


回答1:


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.




回答2:


Try disk_total_space function

float disk_total_space ( string $directory )

http://php.net/manual/en/function.disk-total-space.php




回答3:


you can try disk_free_space()




回答4:


You can use disk_free_space



来源:https://stackoverflow.com/questions/2425841/how-to-get-the-disk-space-on-a-server

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!