runkit7_function_copy
(PECL runkit7 >= Unknown)
runkit7_function_copy — Copy a function to a new function name
Parameters
source_name- Name of the existing function
target_name- Name of the new function to copy the definition to
Examples
Example #1 A runkit7_function_copy() example
<?php
function 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
- runkit7_function_add() - Add a new function, similar to create_function
- runkit7_function_redefine() - Replace a function definition with a new implementation
- runkit7_function_rename() - Change a function's name
- runkit7_function_remove() - Remove a function definition
↑ and ↓ to navigate • Enter to select • Esc to close • / to open