Filesystem 函数
PHP Manual

disk_free_space

(PHP 4 >= 4.1.0, PHP 5)

disk_free_space返回目录中的可用空间

说明

float disk_free_space ( string $directory )

给出一个包含有一个目录的字符串,本函数将根据相应的文件系统或磁盘分区返回可用的字节数。

Example #1 disk_free_space() 例子

<?php
// $df 包含根目录下可用的字节数
$df disk_free_space("/");
//在 Windows 下:
disk_free_space("C:");
disk_free_space("D:");
?>

Note: 此函数不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。

参见 disk_total_space()

参数

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: 此函数不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。

参见


Filesystem 函数
PHP Manual