Current Location: Home> Function Categories> diskfreespace

diskfreespace

alias for disk_free_space
Name:diskfreespace
Category:File system
Programming Language:php
One-line Description:Alias ​​for disk_free_space().

Definition and usage

diskfreespace() function returns the available space in the directory. This function is an alias for disk_free_space() function.

Example

 <?php
echo diskfreespace ( "C:" ) ;
?>

Output:

 209693288558

grammar

 diskfreespace ( directory )
parameter describe
Directory Required. Specify the directory to be inspected.

illustrate

The directory parameter is a directory string. This function returns the available number of bytes based on the corresponding file system or disk partition.

Similar Functions
Popular Articles