PHP/File Directory/disk free space
Версия от 10:37, 26 мая 2010; (обсуждение)
disk_free_space.php
<?php
$drive = "/usr";
echo round((disk_free_space($drive) / 1048576), 2);
?>
<?php
$drive = "/usr";
echo round((disk_free_space($drive) / 1048576), 2);
?>