(PHP 4 >= 4.1.0, PHP 5)
disk_free_space — 返回目录中的可用空间
$directory
)给出一个包含有一个目录的字符串,本函数将根据相应的文件系统或磁盘分区返回可用的字节数。
Example #1 disk_free_space() 例子
<?php
// $df 包含根目录下可用的字节数
$df = disk_free_space("/");
//在 Windows 下:
disk_free_space("C:");
disk_free_space("D:");
?>
Note: 此函数不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。
directory
A directory of the filesystem or disk partition.
Note:
Given a file name instead of a directory, the behaviour of the function is unspecified and may differ between operating systems and PHP versions.
Returns the number of available bytes as a float
或者在失败时返回 FALSE
.
Example #2 disk_free_space() example
<?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:");
?>
Note: 此函数不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。