From 1b382d80a65fdd018cb7314dd68c424a96d2142f Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Mon, 21 May 2001 23:16:31 +0000 Subject: [PATCH] * documented "declare" and ticks git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48118 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/funchand.xml | 52 +++++++++++++++++++++++++++++++++ language/control-structures.xml | 41 ++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) diff --git a/functions/funchand.xml b/functions/funchand.xml index 7e9544a523..ef5f66a7b2 100755 --- a/functions/funchand.xml +++ b/functions/funchand.xml @@ -561,6 +561,58 @@ Array + + + register_tick_function + + Register a function for execution on each tick + + + + Description + + + void + register_tick_function + + string func + mixed arg... + + + + Registers the function named by func to be + executed when a tick is + called. + + + + + + unregister_tick_function + + De-register a function for execution on each tick + + + + Description + + + void + unregister_tick_function + + string func + mixed arg... + + + + De-registers the function named by func so it is + no longer executed when a tick is + called. + + +