PHP中的diskfreespace()函数

diskfreespace()函数返回目录中的可用空间,并且是disk_free_space()的别名。

语法

diskfreespace(dir_name)

参数

  • dir_name-要指定的目录。

返回

diskfreespace()函数以字节为单位返回可用空间。

示例

<?php
   echo diskfreespace("/home/");
?>

输出结果

832931168256

让我们来看另一个例子。

示例

<?php
   $free_space = diskfreespace("/home/");
   echo "Free Space: $free_space";
?>

输出结果

Free Space: 832931168256