disk_free_space
disk_free_space
(PHP 4 >= 4.1.0, PHP 5, PHP 7)
disk_free_space - 返回文件系统或磁盘分区上的可用空间
描述
float disk_free_space ( string $directory )
给定一个包含目录的字符串,该函数将返回相应文件系统或磁盘分区上的可用字节数。
参数
directory
文件系统或磁盘分区的目录。
注意
:给定一个文件名而不是一个目录,该功能的行为是未指定的,并且可能在操作系统和PHP版本中有所不同。
返回值
以float形式返回可用字节数或在失败时返回FALSE。
例子
示例#1 disk_free_space()示例
<?php
// $df contains the number of bytes available on "/"
$df = disk_free_space("/"
// On Windows:
$df_c = disk_free_space("C:"
$df_d = disk_free_space("D:"
?>
注意
注意
:此功能在远程文件上不起作用,因为要检查的文件必须可通过服务器的文件系统访问。
扩展内容
- disk_total_space() - 返回文件系统或磁盘分区的总大小
← dirname
disk_total_space →