runkit_function_redefine
(PECL runkit >= 0.7.0)
runkit_function_redefine — Replace a function definition with a new implementation
Description
$funcname
, string $arglist
, string $code
[, bool $return_by_reference
= NULL
[, string $doc_comment
= NULL
]] ) : bool$funcname
, Closure $closure
[, string $doc_comment
= NULL
] ) : boolNote: By default, only userspace functions may be removed, renamed, or modified. In order to override internal functions, you must enable the runkit.internal_override setting in php.ini.
Parameters
-
funcname
-
Name of function to redefine
-
arglist
-
New list of arguments to be accepted by function
-
code
-
New code implementation
-
closure
-
A closure that defines the function.
-
return_by_reference
-
Whether the function should return by reference.
-
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 parameters return_by_reference and
doc_comment have been added.
|
Examples
Example #1 A runkit_function_redefine() example
<?php
function testme() {
echo "Original Testme Implementation\n";
}
testme();
runkit_function_redefine('testme','','echo "New Testme Implementation\n";');
testme();
?>
The above example will output:
Original Testme Implementation New Testme Implementation
See Also
- runkit_function_add() - Add a new function, similar to create_function
- runkit_function_copy() - Copy a function to a new function name
- runkit_function_rename() - Change a function's name
- runkit_function_remove() - Remove a function definition
- runkit_method_redefine() - Dynamically changes the code of the given method
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-function.runkit-function-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.