(PECL runkit7 >= Unknown)
runkit7_function_copy — Copy a function to a new function name
$source_name, string $target_name): boolsource_nameName of the existing function
target_nameName of the new function to copy the definition to
Cette fonction retourne true en cas de succès ou false si une erreur survient.
Exemple #1 A runkit7_function_copy() example
<?php
function original() {
echo "In a function\n";
}
runkit7_function_copy('original','duplicate');
original();
duplicate();
?>
L'exemple ci-dessus va afficher :
In a function In a function