function_name
要创建的函数的名称
argument_list
用逗号分隔的参数列表
code
构成函数的代码
closure
一个 闭包,它定义了函数。
return_by_reference
函数是否应该通过引用返回。
doc_comment
函数的文档注释。
return_type
函数的返回类型。
is_strict
函数是否应该像在包含 strict_types=1
的文件中声明一样执行。
示例 #1 一个 runkit7_function_add() 示例
<?php
runkit7_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 value of a is 1 The value of b is 2