如何获取服务器上的磁盘空间?

发布于 2024-08-24 22:46:09 字数 246 浏览 2 评论 0原文

我应该为一家公司用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

栀子花开つ 2024-08-31 22:46:09

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.

廻憶裏菂餘溫 2024-08-31 22:46:09

尝试使用 disk_total_space 函数

float disk_total_space ( string $directory )

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

Try disk_total_space function

float disk_total_space ( string $directory )

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文