Note that unregister_tick_function() can also accept a callback in the form of an array (either static, like array($className, $methodName) or instance, like array(&$this, $methodName)).
It cannot accept an anonymous function, however.
unregister_tick_function
(PHP 4 >= 4.0.3, PHP 5)
unregister_tick_function — De-register a function for execution on each tick
Beschreibung
void unregister_tick_function
( string
$function_name
)
De-registers the function named by function_name so it is
no longer executed when a tick is
called.
Parameter-Liste
-
function_name -
The function name, as a string.
Rückgabewerte
Es wird kein Wert zurückgegeben.
rob dot eyre at gmail dot com
22-Jul-2011 05:22
