PHP 8.4.0 RC4 available for testing

eio_event_loop

(PECL eio >= 0.0.1dev)

eio_event_loopPolls libeio until all requests proceeded

Descrição

eio_event_loop(): bool

eio_event_loop() polls libeio until all requests proceeded.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

eio_event_loop() returns true on success, ou false em caso de falha.

Exemplos

Exemplo #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();
?>

O exemplo acima produzirá algo semelhante a:

eio_chmod_ok

Veja Também

  • eio_poll() - Can be to be called whenever there are pending requests that need finishing
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top