(PECL runkit7 >= Unknown)
runkit7_method_rename — Dynamically changes the name of the given method
$class_name, string $source_method_name, string $target_method_name): boolBilginize: Bu işlev çalışmakta olan yöntemi değiştirmekte kullanılamaz.
class_namesource_method_nametarget_method_nameÖrnek 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();
?>Yukarıdaki örneğin çıktısı:
foo!