当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ReflectionFunction invoke()用法及代码示例


ReflectionFunction::invoke()函数是PHP中的内置函数,用于返回调用函数的结果。

用法:

mixed ReflectionFunction::invoke( mixed $args)

参数:该函数接受参数$args,该参数保存传递给被调用函数的参数列表。


返回值:该函数返回调用函数的结果。

以下示例程序旨在说明PHP中的ReflectionFunction::invoke()函数:

程序_1:

<?php 
  
// Initializing a user-defined function 
function Company($Company_Name, $Role) { 
    return sprintf("%s %s\r\n", $Company_Name, $Role); 
} 
  
// Using ReflectionFunction() over the 
// specified function company 
$function = new ReflectionFunction('company'); 
  
// Calling the invoke() function 
$A = $function->invoke('GeeksforGeeks', 
            'is a Computer Science Portal.'); 
  
// Getting the result of the invoked function company 
echo $A; 
?>
输出:
GeeksforGeeks is a Computer Science Portal.

程序_2:

<?php 
  
// Initializing some user-defined functions 
function Trial1($First_Args, $Second_Args) { 
    return sprintf("%s %s\r\n", $First_Args, $Second_Args); 
} 
  
function Trial2($First_Args, $Second_Args) { 
    return sprintf("%s %s\r\n", $First_Args, $Second_Args); 
} 
  
// Using ReflectionFunction() over the above 
// specified functions  
$function = new ReflectionFunction('Trial1'); 
$function = new ReflectionFunction('Trial2'); 
  
// Calling the invoke() function and getting the 
// result of the invoked function company 
echo $function->invoke('a+a', '= 2a'); 
echo $function->invoke('a*a', '= a^2'); 
?>

输出:

a+a = 2a
a*a = a^2

参考: https://www.php.net/manual/en/reflectionfunction.invoke.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionFunction invoke() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。