PHP ReflectionFunction::invokeArgs 反射函数
-
定义和用法
ReflectionFunction::invokeArgs - 调用函数参数 -
版本支持
PHP4 PHP5 PHP7 不支持 v5.1.2+支持 支持 -
语法
ReflectionFunction::invokeArgs( array $args )
ReflectionFunction::invokeArgs() 调用该函数并将其参数作为数组传递。 -
-
返回值
返回调用函数的结果 -
示例
尝试一下function title($title, $name) { return sprintf("%s. %s\r\n", $title, $name); } $function = new ReflectionFunction('title'); echo $function->invokeArgs('Dr', 'Phil');
-
相关页面
ReflectionFunction::invoke() - 调用函数ReflectionFunctionAbstract::getNumberOfParameters() - 获取参数数目call_user_func_array() - 调用回调函数,并把一个数组参数作为回调函数的参数