disk_free_space.php : disk_free_space « File Directory « PHP






disk_free_space.php

 
<?php
     $drive = "/usr";
     echo round((disk_free_space($drive) / 1048576), 2);
?>
  
  

Related examples in the same category