Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
446 views
in Technique[技术] by (71.8m points)

php - How to get the disk space on a server?

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 ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...