Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

register_tick_function(3) [php man page]

REGISTER_TICK_FUNCTION(3)						 1						 REGISTER_TICK_FUNCTION(3)

register_tick_function - Register a function for execution on each tick

SYNOPSIS
bool register_tick_function (callable $function, [mixed $arg], [mixed $...]) DESCRIPTION
Registers the given $function to be executed when a tick is called. PARAMETERS
o $function - The function name as a string, or an array consisting of an object and a method. o $arg - o $... - RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #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. | | | | +--------+---------------------------------------------------+ NOTES
Warning register_tick_function(3) should not be used with threaded web server modules with PHP 5.2 or lower. SEE ALSO
declare, unregister_tick_function(3). PHP Documentation Group REGISTER_TICK_FUNCTION(3)

Check Out this Related Man Page

IS_CALLABLE(3)								 1							    IS_CALLABLE(3)

is_callable - Verify that the contents of a variable can be called as a function

SYNOPSIS
bool is_callable (callable $name, [bool $syntax_only = false], [string &$callable_name]) DESCRIPTION
Verify that the contents of a variable can be called as a function. This can check that a simple variable contains the name of a valid function, or that an array contains a properly encoded object and function name. PARAMETERS
o $name - The callback function to check o $syntax_only - If set to TRUE the function only verifies that $name might be a function or method. It will only reject simple variables that are not strings, or an array that does not have a valid structure to be used as a callback. The valid ones are supposed to have only 2 entries, the first of which is an object or a string, and the second a string. o $callable_name - Receives the "callable name". In the example below it is "someClass::someMethod". Note, however, that despite the implication that someClass::SomeMethod() is a callable static method, this is not the case. RETURN VALUES
Returns TRUE if $name is callable, FALSE otherwise. EXAMPLES
Example #1 is_callable(3) example <?php // How to check a variable to see if it can be called // as a function. // // Simple variable containing a function // function someFunction() { } $functionVariable = 'someFunction'; var_dump(is_callable($functionVariable, false, $callable_name)); // bool(true) echo $callable_name, " "; // someFunction // // Array containing a method // class someClass { function someMethod() { } } $anObject = new someClass(); $methodVariable = array($anObject, 'someMethod'); var_dump(is_callable($methodVariable, true, $callable_name)); // bool(true) echo $callable_name, " "; // someClass::someMethod ?> SEE ALSO
function_exists(3), method_exists(3). PHP Documentation Group IS_CALLABLE(3)
Man Page

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

add user from web

I am trying to figure out how to add a user from the web (w/ PHP or PERL): is it possible? (2 Replies)
Discussion started by: ryanroth
2 Replies

2. HP-UX

Ticks in seconds.

Hello all, Is there any thumb rule or aproximation of the equivalence in second of one tick? Thank you in advance. (1 Reply)
Discussion started by: mig28mx
1 Replies

3. UNIX for Dummies Questions & Answers

declare variable

hi to all, i am trying to declare a variable as an integer in unix shell script. i search the web for a way to do it but it doesnt work. i tried "define -i" and "declare" but that doesnt work. if somebody knows another way to declare a variable as integer please help me. thank you (2 Replies)
Discussion started by: omonoiatis9
2 Replies

4. Shell Programming and Scripting

Array declaration in Shell script

this is my code declare -a USERCERT declare -a CACERT declare -a KEYSRC this is the error + declare -a USERCERT ./clone.sh: 1: declare: not found + declare -a CACERT ./clone.sh: 1: declare: not found + declare -a KEYSRC ./clone.sh: 1: declare: not found (11 Replies)
Discussion started by: xerox
11 Replies

5. Shell Programming and Scripting

Report printing

Hi. i am trying to print the contents of my text file with delimiter : separating them. 6:15:ABC ABD:ABB ABE: 2:20:AEE ABH:ACC AAA: i have completed my header for the report but i am having problem with my contents. i am trying to read in the data with the code below. { while read... (10 Replies)
Discussion started by: One_2_three
10 Replies

6. Shell Programming and Scripting

Bash to sh conversion

declare -i DEFINT=1 declare -i DEFDELAY=1 declare -i timeout=DEFTOUT declare -i interval=DEFINT declare -i delay=DEFDELAY if (($# == 0 || interval <= 0)); then printUsage exit 1 fi ( ((t = timeout)) while ((t > 0)); do sleep $interval kill -0 $$ ||... (5 Replies)
Discussion started by: SkySmart
5 Replies