PHP diskfreespace() Function
❮ Complete PHP Filesystem Reference
Definition and Usage
The diskfreespace() function returns the free space, in bytes, of the specified directory.
This function is an alias of the disk_free_space() function.
Syntax
diskfreespace(directory)
Parameter | Description |
---|---|
directory | Required. Specifies the directory to check |
Example
<?php
echo diskfreespace("C:");
?>
The output of the code above could be:
109693288448
❮ Complete PHP Filesystem Reference