(PECL runkit7 >= Unknown)
runkit7_function_copy — Copy a function to a new function name
runkit7_function_copy(string $source_name, string $target_name): bool
source_nameName of the existing function
target_nameName of the new function to copy the definition to
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
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.runkit7-function-copy.php