register_tick_function

(PHP 4 >= 4.0.3, PHP 5, PHP 7, PHP 8)

register_tick_functionRegister a function for execution on each tick

Descrição

register_tick_function(callable$callback, mixed...$args): bool

Registers the given callback to be executed when a tick is called.

Parâmetros

callback

The function to register.

args

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Exemplos

Exemplo #1 register_tick_function() example

<?php
declare(ticks=1);

// using a function as the callback
register_tick_function('my_function', true);

// using an object->method
$object = new my_class();
register_tick_function(array($object, 'my_method'), true);
?>

Veja Também

To Top