|
eio_statvfsGet file system statistics Beschreibung
resource eio_statvfs
( string
$path
, int $pri
, callable $callback
[, mixed $data
] )
eio_statvfs returns file system statistics information in
Parameter-Liste
Rückgabewerte
eio_statvfs returns request resource on success or
BeispieleBeispiel #1 eio_statvfs example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
string(17) "/tmp/eio-file.tmp"
array(11) {
["f_bsize"]=>
int(4096)
["f_frsize"]=>
int(4096)
["f_blocks"]=>
int(262144)
["f_bfree"]=>
int(262111)
["f_bavail"]=>
int(262111)
["f_files"]=>
int(1540815)
["f_ffree"]=>
int(1540743)
["f_favail"]=>
int(1540743)
["f_fsid"]=>
int(0)
["f_flag"]=>
int(4102)
["f_namemax"]=>
int(255)
}
|