func_get_arg

Example

 mixed func_get_arg ( int $arg_num ) 

Description

Gets the specified argument from a user-defined function's argument list. This function may be used in conjunction with func_get_args() and func_num_args() to allow user-defined functions to accept variable-length argument lists.

Return Values

Returns the specified argument, or FALSE on error.