FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

PHP diskfreespace() Function


PHP Filesystem Reference 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

PHP Filesystem Reference Complete PHP Filesystem Reference