PHP | ReflectionFunction invokeArgs()函数
ReflectionFunction::invokeArgs()函数是PHP中的一个内置函数,用于返回被调用函数调用的结果。
句法:
mixed ReflectionFunction::invokeArgs( array $args )
参数:此函数接受单个参数$args ,其中包含传递给被调用函数的参数数组。
返回值:该函数返回被调用函数调用的结果。
下面的程序说明了PHP中的 ReflectionFunction::invokeArgs()函数:
方案一:
invokeArgs(array('GeeksforGeeks',
'is a Computer Science Portal.'));
// Getting the result of the invoked
// function company
echo $A;
?>
输出:
GeeksforGeeks is a Computer Science Portal.
程序_2:
invokeArgs(array('a+a', '= 2a'));
echo $function->invokeArgs(array('a*a', '= a^2'));
?>
输出:
a+a = 2a
a*a = a^2
参考: https://www. PHP.net/manual/en/reflectionfunction.invokeargs。 PHP