當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。