eio_statvfs(PECL eio >= 0.0.1dev) eio_statvfs — Get file system statistics Описаниеeio_statvfs() returns file system statistics information in result argument of callback Список параметров
Возвращаемые значенияeio_statvfs() returns request resource on success or FALSE on error. On success assigns result argument of callback to an array. ПримерыПример #1 eio_statvfs() example
<?phpРезультатом выполнения данного примера будет что-то подобное:
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)
}
|
||