eio_nop

(PECL eio >= 0.0.1dev) Does nothing, except go through the whole request cycle. resource eio_nop ([ int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_nop() does nothing, except go through the whole request cycle. Could be useful in debugging. Parameters: pri The request priority: EIO_PRI_DEFAULT, EIO_PRI_MIN, EIO_PRI_MAX, or NULL

eio_mknod

(PECL eio >= 0.0.1dev) Create a special or ordinary file. resource eio_mknod ( string $path, int $mode, int $dev [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_mknod() creates ordinary or special(often) file. Parameters: path Path for the new node(file). mode Specifies both the permissio

eio_mkdir

(PECL eio >= 0.0.1dev) Create directory resource eio_mkdir ( string $path, int $mode [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_mkdir() creates directory with specified access mode. Parameters: path Path for the new directory. mode Access mode, e.g. 0755 pri

eio_lstat

(PECL eio >= 0.0.1dev) Get file status resource eio_lstat ( string $path, int $pri, callable $callback [, mixed $data = NULL ] ) eio_lstat() returns file status information in result argument of callback Parameters: path The file path pri The request priority: EIO_PRI_DEFAULT, EIO_PRI_MIN, EIO_PRI_MAX, or NULL. If NULL passed, pri in

eio_link

(PECL eio >= 0.0.1dev) Create a hardlink for file resource eio_link ( string $path, string $new_path [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_link() creates a hardlink new_path for a file specified by path. Parameters: path Source file path. new_path Target file path.

eio_init

(PECL eio = 1.0.0) (Re-)initialize Eio void eio_init ( void ) eio_init() (re-)initializes Eio. It allocates memory for internal structures of libeio and Eio itself. You may call eio_init() before using Eio functions. Otherwise it will be called internally first time you invoke an Eio function in a process. Returns: No value is returned. This deprecated featur

eio_grp

(PECL eio >= 0.0.1dev) Createsa request group. resource eio_grp ( callable $callback [, string $data = NULL ] ) eio_grp() creates a request group. Parameters: callback callback function is called when the request is done. It should match the following prototype: void callback(mixed $data, int $result[, resource $req]); data Arbitr

eio_grp_limit

(PECL eio >= 0.0.1dev) Set group limit void eio_grp_limit ( resource $grp, int $limit ) Limit number of requests in the request group. Parameters: grp The request group resource. limit Number of requests in the group. Returns: No value is returned.

eio_grp_cancel

(PECL eio >= 0.0.1dev) Cancels a request group void eio_grp_cancel ( resource $grp ) eio_grp_cancel() cancels a group request specified by grp request group resource. Parameters: grp The request group resource returned by eio_grp(). Returns: No value is returned.

eio_grp_add

(PECL eio >= 0.0.1dev) Adds a request to the request group. void eio_grp_add ( resource $grp, resource $req ) eio_grp_add() adds a request to the request group. Parameters: grp The request group resource returned by eio_grp() req The request resource Returns: eio_grp_add() doesn't return a value.