(PECL runkit7 >= Unknown)
runkit7_method_rename — Dynamically changes the name of the given method
$class_name, string $source_method_name, string $target_method_name): bool注意: この関数は、 現在実行中(もしくはチェーンド)のメソッドを操作することはできません。
class_namesource_method_nametarget_method_name例1 runkit7_method_rename() example
<?php
class Example {
function foo() {
return "foo!\n";
}
}
// Rename the 'foo' method to 'bar'
runkit7_method_rename(
'Example',
'foo',
'bar'
);
// output renamed function
echo (new Example)->bar();
?>上の例の出力は以下となります。
foo!