diskfreespace
(PHP3 >= 3.0.7 , PHP4 >= 4.0b4)
diskfreespace --- 傳回目錄中可用的空間
語法 :
float diskfreespace(string directory)說明 :
給予一個目錄,此函式會傳回目錄下可用的空間,單位為位元組(bytes)。
Example :
<?php
$df = diskfreespace("/"); // $df contains the number of bytes
// available on "/"
?>