📜  PHP | disk_total_space( )函数

📅  最后修改于: 2022-05-13 01:56:36.578000             🧑  作者: Mango

PHP | disk_total_space( )函数

PHP中的 disk_total_space()函数是一个内置函数,用于返回指定目录的总空间。 disk_total_space()函数以字节为单位表示总空间。它返回文件系统或磁盘分区上的总空间。

disk_total_space()函数返回作为字符串输入的指定目录的相应文件系统或磁盘分区上的总字节数。

句法:

float disk_total_space ( string $directory )

参数: PHP中的disk_total_space()函数只接受一个参数$directory ,即目录。

返回值:它返回文件系统或磁盘分区上的总空间。

错误和异常

  1. 如果将文件名作为参数而不是目录作为参数, PHP中的 disk_total_space()函数可能会给出不正确的结果。
  2. PHP中的 disk_total_space()函数不适用于远程文件。它仅适用于服务器文件系统可访问的文件。

例子:

Input : disk_total_space("D:");
Output : 10969328844798729

Input : disk_total_space("C:");
Output : 104379834795739795 

下面的程序说明了 disk_total_space()函数:

程序 1


输出:

10969328844798729

方案二


输出:

C: drive has a total capacity of 104379834795739795 bytes.

参考:
http:// PHP.net/manual/en/函数.disk-total-space。 PHP