|
eio_lstatGet file status Beschreibung
resource eio_lstat
( string
$path
, int $pri
, callable $callback
[, mixed $data = NULL
] )
eio_lstat returns file status information in
Parameter-Liste
Rückgabewerte
eio_lstat returns request resource on success or BeispieleBeispiel #1 eio_lstat example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
string(9) "eio_lstat"
array(12) {
["st_dev"]=>
int(2050)
["st_ino"]=>
int(2099197)
["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(1318235777)
["st_mtime"]=>
int(1318235777)
["st_ctime"]=>
int(1318235777)
}
Siehe auch
|