Find total disk space in PHP, php disk_total_space, disk_total_space


 

Find total disk space in PHP, php disk_total_space, disk_total_space

How to find the total disk space in PHP program. Learn how you can use disk_total_space() function in PHP to find the total disk space.

How to find the total disk space in PHP program. Learn how you can use disk_total_space() function in PHP to find the total disk space.

Learn How to Get the total disk space in PHP Program.

In this PHP Tutorial example we will use the disk_total_space() function in our PHP code to find the total disk space.

syntax disk_total_space() Function PHP

disk_total_space(directory_path)

Gives the total space present on the disk in bytes in the specified directory.

Code for disk_total_space() Function PHP

<?php

$space2=disk_total_space("c:\\xampp");

echo $space2;

?>

Output

83889594368

 

Ads