PHP Function Handling Functions
EditRocket provides the following information on Function Handling functions in the PHP source code builder.
mixed call_user_func ( callback $function [, mixed $parameter [, mixed $... ]] ) - Call a user defined function given by the function parameter.
mixed call_user_func_array ( callback $function , array $param_arr ) - Call a user defined function with the parameters in param_arr.
string create_function ( string $args , string $code ) - Creates an anonymous function from the parameters passed, and returns a unique name for it.
mixed func_get_arg ( int $arg_num ) - Gets the specified argument from a user-defined function's argument list.
array func_get_args ( void ) - Gets an array of the function's argument list.
int func_num_args ( void ) - Gets the number of arguments passed to the function.
bool function_exists ( string $function_name ) - Checks the list of defined functions, both built-in (internal) and user-defined, for function_name.
array get_defined_functions ( void ) - Gets an array of all defined functions.
void register_shutdown_function ( callback $function [, mixed $parameter [, mixed $... ]] ) - Multiple calls to register_shutdown_function() can be made, and each will be called in the same order as they were registered.
bool register_tick_function ( callback $function [, mixed $arg [, mixed $... ]] ) -
void unregister_tick_function ( string $function_name ) -