disk_free_space -返回目錄中的可用空間
disk_free_space
( PHP 4中“ = 4.1.0 , PHP 5中)
disk_free_space -返回目錄中的可用空間
描述
浮法disk_free_space (字符串$目錄)
鑒於一個字符串包含一個目錄,該函數將返回的字節數提供相應的文件或分區。
參數
目錄
目錄的文件或分區。
注:由於文件名而不是一個目錄,行為的功能不詳,可能是不同的操作系統和PHP版本。
返回值
返回一些可用字節為float 。
實例
例如# 1 disk_free_space ( )的例子
// $df contains the number of bytes available on "/"
$df = disk_free_space("/");
// On Windows:
disk_free_space("C:");
disk_free_space("D:");
?>