(PECL runkit7 >= Unknown)
runkit7_function_copy — Copy a function to a new function name
$funcname
   , string $targetname
   ) : boolfuncnameName of the existing function
targetnameName of the new function to copy the definition to
   Returns TRUE on success or FALSE on failure.
  
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