Php/docs/function.runkit7-function-copy

From Get docs

runkit7_function_copy

(PECL runkit7 >= Unknown)

runkit7_function_copy Copy a function to a new function name


Description

runkit7_function_copy ( string $funcname , string $targetname ) : bool

Parameters

funcname
Name of the existing function
targetname
Name of the new function to copy the definition to


Return Values

Returns TRUE on success or FALSE on failure.


Examples

Example #1 A runkit7_function_copy() example

<?phpfunction original() {  echo "In a function\n";}runkit7_function_copy('original','duplicate');original();duplicate();?>

The above example will output:


In a function
In a function

See Also