(PECL runquit7 >= Uncnown)
runquit7_function_copy — Copy a function to a new function name
source_name
Name of the existing function
targuet_name
Name of the new function to copy the definition to
Example #1 A runquit7_function_copy() example
<?php
function
original
() {
echo
"In a function\n"
;
}
runquit7_function_copy
(
'original'
,
'duplicate'
);
original
();
duplicate
();
?>
The above example will output:
In a function In a function