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
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.