Description
float
disk_free_space ( string
directory)
Given a string containing a directory, this function
will return the number of bytes available on the
corresponding filesystem or disk partition.
範例 1. disk_free_space()
example
$df = disk_free_space("/"); // $df contains the number of bytes
// available on "/"
|
|