|
eio_read(PECL eio >= 0.0.1dev) eio_read — Read from a file descriptor at given offset. Описание
resource eio_read
( int $fd
, int $length
, int $offset
, int $pri
, callback $callback
[, mixed $data = NULL
] )
eio_read() reads up to length bytes from fd file descriptor at offset. The read bytes are stored in result argument of callback. Список параметров
Возвращаемые значенияeio_read() stores read bytes in result argument of callback function. ПримерыПример #1 eio_read() example
<?php Результатом выполнения данного примера будет что-то подобное: string(5) "34567" Смотрите также
|
|