(PECL classkit >= 0.1)
classkit_method_rename — Dynamically changes the name of the given method
Bilginize: This function cannot be used to manipulate the currently running (or chained) method.
Bu işlev DENEYSELDİR. Bu işlevin davranışı, ismi ve belgeleri PHP'nin sonraki sürümlerinde hiçbir duyuru yapılmaksızın değiştirilebilir. Bu riski göze alamayacaksanız bu işlevi kullanmayın.
The class in which to rename the method
The name of the method to rename
The new name to give to the renamed method
Başarı durumunda TRUE, aksi takdirde FALSE döndürür.
Örnek 1 classkit_method_rename() example
<?php
class Example {
function foo() {
return "foo!\n";
}
}
// Rename the 'foo' method to 'bar'
classkit_method_rename(
'Example',
'foo',
'bar'
);
// output renamed function
echo Example::bar();
?>
Yukarıdaki örneğin çıktısı:
foo!