runkit_function_add
(PECL runkit >= 0.7.0)
runkit_function_add — Add a new function, similar to create_function()
Description
$funcname
, string $arglist
, string $code
[, bool $return_by_reference
= NULL
[, string $doc_comment
= NULL
]] ) : boolParameters
-
funcname
-
Name of function to be created
-
arglist
-
Comma separated argument list
-
code
-
Code making up the function
-
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_add() example
<?php
runkit_function_add('testme','$a,$b','echo "The value of a is $a\n"; echo "The value of b is $b\n";');
testme(1,2);
?>
The above example will output:
The value of a is 1 The value of b is 2
See Also
- create_function() - Create an anonymous (lambda-style) function
- runkit_function_redefine() - Replace a function definition with a new implementation
- 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_add() - Dynamically adds a new method to a given class
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-function-add.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.