runkit_method_redefine
(PECL runkit >= 0.7.0)
runkit_method_redefine — Dynamically changes the code of the given method
Description
$classname
, string $methodname
, string $args
, string $code
[, int $flags
= RUNKIT_ACC_PUBLIC
[, string $doc_comment
= NULL
]] ) : bool$classname
, string $methodname
, Closure $closure
[, int $flags
= RUNKIT_ACC_PUBLIC
[, string $doc_comment
= NULL
]] ) : boolNote: This function cannot be used to manipulate the currently running (or chained) method.
Parameters
-
classname
-
The class in which to redefine the method
-
methodname
-
The name of the method to redefine
-
args
-
Comma-delimited list of arguments for the redefined method
-
code
-
The new code to be evaluated when
methodname
is called -
closure
-
A closure that defines the method.
-
flags
-
The redefined method can be
RUNKIT_ACC_PUBLIC
,RUNKIT_ACC_PROTECTED
orRUNKIT_ACC_PRIVATE
optionally combined via bitwise OR withRUNKIT_ACC_STATIC
(since 1.0.1) -
doc_comment
-
The doc comment of the function.
Changelog
Version | Description |
---|---|
runkit 1.0.4 |
An alternative syntax expecting a closure has been added.
|
runkit 1.0.4 |
The optional parameter doc_comment has been added.
|
Examples
Example #1 runkit_method_redefine() example
<?php
class Example {
function foo() {
return "foo!\n";
}
}
// create an Example object
$e = new Example();
// output Example::foo() (before redefine)
echo "Before: " . $e->foo();
// Redefine the 'foo' method
runkit_method_redefine(
'Example',
'foo',
'',
'return "bar!\n";',
RUNKIT_ACC_PUBLIC
);
// output Example::foo() (after redefine)
echo "After: " . $e->foo();
?>
The above example will output:
Before: foo! After: bar!
See Also
- runkit_method_add() - Dynamically adds a new method to a given class
- runkit_method_copy() - Copies a method from class to another
- runkit_method_remove() - Dynamically removes the given method
- runkit_method_rename() - Dynamically changes the name of the given method
- runkit_function_redefine() - Replace a function definition with a new implementation
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-runkit-method-redefine.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.