diskfreespace

(PHP 3 >= 3.0.7, PHP 4, PHP 5)

diskfreespace -- disk_free_space()的别名

说明

本函数是该函数的别名:disk_free_space()


add a note add a note User Contributed Notes
27-Oct-2005 08:17
<?php
//On windows:
$hdwinC = disk_free_space("C:");
$hdwinD = disk_free_space("D:");
echo
"Diskspace left on C: $hdwinC<br>";
echo
"Diskspace left on D: $hdwinD";

//Linux:
$hdGnu = disk_free_space("/");
echo
"Diskspace left on / $hdGnu";
?>