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 "/"
?>