PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

fclose> <disk_total_space
Last updated: Fri, 26 Sep 2008

view this page in

diskfreespace

(PHP 4, PHP 5)

diskfreespaceAlias of disk_free_space()

Description

This function is an alias of: disk_free_space().



add a note add a note User Contributed Notes
diskfreespace
27-Oct-2005 07: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";
?>

fclose> <disk_total_space
Last updated: Fri, 26 Sep 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites