disk_free_space()函数可以返回指定目录的可用空间(以字节为单位)。
float disk_free_space ( string $directory )
给定包含目录的字符串,disk_free_space()函数可以返回相应文件系统或磁盘分区上可用的字节数。
<?php echo disk_free_space("C:"); echo "\n"; echo disk_free_space("E:"); ?gt;
输出结果
224150941696 209571344384