eio_event_loop
eio_event_loop
(PECL eio >= 0.0.1dev)
eio_event_loop — Polls libeio until all requests proceeded
Description
bool eio_event_loop ( void )
eio
_
event
_
loop()
polls libeio
until all requests proceeded.
Parameters
This function has no parameters.
Return Values
eio
_
event
_
loop()
returns TRUE
on success or FALSE
on error.
Examples
Example #1 eio
_
event
_
loop() example
<?php
$temp_filename = "eio-temp-file.tmp";
touch($temp_filename
/* Is called when eio_chmod() finished */
function my_chmod_callback($data, $result) {
global $temp_filename;
if ($result == 0 && !is_readable($temp_filename) && is_writable($temp_filename)) {
echo "eio_chmod_ok";
}
@unlink($temp_filename
}
eio_chmod($temp_filename, 0200, EIO_PRI_DEFAULT, "my_chmod_callback"
eio_event_loop(
?>
The above example will output something similar to:
eio_chmod_ok
See Also
- eio_poll
← eio_dup2
eio_fallocate →
© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://secure.php.net/manual/en/function.eio-event-loop.php