(PECL runkit7 >= Unknown)
runkit7_function_copy — Copy a function to a new function name
source_name
Name of the existing function
target_name
Name of the new function to copy the definition to
Restituisce true
in caso di successo, false
in caso di fallimento.
Example #1 A runkit7_function_copy() example
<?php
function original() {
echo "In a function\n";
}
runkit7_function_copy('original','duplicate');
original();
duplicate();
?>
Il precedente esempio visualizzerĂ :
In a function In a function