Query: register_tick_function
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
REGISTER_TICK_FUNCTION(3) 1 REGISTER_TICK_FUNCTION(3) register_tick_function - Register a function for execution on each tickSYNOPSISbool register_tick_function (callable $function, [mixed $arg], [mixed $...])DESCRIPTIONRegisters the given $function to be executed when a tick is called.PARAMETERSo $function - The function name as a string, or an array consisting of an object and a method. o $arg - o $... -RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 register_tick_function(3) 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); ?>CHANGELOG+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | Ticks are now supported on threaded web server | | | modules. | | | | +--------+---------------------------------------------------+NOTESWarning register_tick_function(3) should not be used with threaded web server modules with PHP 5.2 or lower.SEE ALSOdeclare, unregister_tick_function(3). PHP Documentation Group REGISTER_TICK_FUNCTION(3)
| Related Man Pages |
|---|
| property_exists(3) - php |
| var_export(3) - php |
| call_user_func_array(3) - php |
| is_callable(3) - php |
| method_exists(3) - php |
| Similar Topics in the Unix Linux Community |
|---|
| add user from web |
| Ticks in seconds. |
| astahttpd web server 0.1-beta3 (Default branch) |
| Array declaration in Shell script |
| Bash to sh conversion |