eio_stat(PECL eio >= 0.0.1dev) eio_stat — Get file status Описаниеeio_stat() returns file status information in result argument of callback Список параметров
 Возвращаемые значенияeio_stat() returns request resource on success or FALSE on error. On success assigns result argument of callback to an array. ПримерыПример #1 eio_stat() example 
<?phpРезультатом выполнения данного примера будет что-то подобное: 
string(8) "eio_stat"
array(12) {
  ["st_dev"]=>
  int(2050)
  ["st_ino"]=>
  int(2489173)
  ["st_mode"]=>
  int(33188)
  ["st_nlink"]=>
  int(1)
  ["st_uid"]=>
  int(1000)
  ["st_gid"]=>
  int(100)
  ["st_rdev"]=>
  int(0)
  ["st_blksize"]=>
  int(4096)
  ["st_blocks"]=>
  int(0)
  ["st_atime"]=>
  int(1318250380)
  ["st_mtime"]=>
  int(1318250380)
  ["st_ctime"]=>
  int(1318250380)
}
Смотрите также
  | 
||