The diskfreespace() function returns the free space, in bytes, of the specified directory.
This function is an alias of the disk_free_space() function.
PHP diskfreespace() Function has the following syntax.
diskfreespace(directory)
Parameter | Is Required | Description |
---|---|---|
directory | Required. | Directory to check |
<?php
echo diskfreespace("C:");
?>
The code above generates the following result.