runkit7_function_copy

(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_name

Name of the existing function

target_name

Name of the new function to copy the definition to

戻り値

成功した場合に true を、失敗した場合に false を返します。

例1 A runkit7_function_copy() example

<?php
function original() {
echo
"In a function\n";
}
runkit7_function_copy('original','duplicate');
original();
duplicate();
?>

上の例の出力は以下となります。

In a function
In a function

参考

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top