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


PHP ReflectionFunction export()用法及代碼示例


ReflectionFunction::export()函數是PHP中的內置函數,如果將return參數設置為TRUE,則該函數用於以字符串形式返回導出,否則返回NULL。

用法:

string ReflectionFunction::export( string $name, string $return )

參數:該函數接受上述和以下描述的兩個參數:


  • $name:這是要導出的指定函數。
  • $return:它是布爾值TRUE或FALSE。如果將其值設置為True,則將導出,如果將其值設置為false,則將返回NULL。默認值為False。

返回值:如果將return參數設置為TRUE,則此函數以字符串形式返回導出,否則返回NULL。

以下示例程序旨在說明PHP中的ReflectionFunction::export()函數:

示例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 export() function 
$A = $function->export(Company, $return = TRUE); 
  
// Getting the export as a string 
echo $A; 
?>

輸出:

Function [ <user> function Company ] {
  @@ /home/b38c7d194c961e6b0d1d5b1c6e582d19.php 4 - 7

  - Parameters [2] {
    Parameter #0 [ <required> $Company_Name ]
    Parameter #1 [ <required> $Role ]
  }
}

示例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  
$function1 = new ReflectionFunction('Trial1'); 
$function2 = new ReflectionFunction('Trial2'); 
  
// Calling the export() function and 
// Getting the export as a string 
echo $function1->export(Trial1, $return = TRUE); 
echo $function2->export(Trial2, $return = FALSE); 
?>
輸出:
Function [ <user> function Trial1 ] {
  @@ /home/2410abe3ca2b5235249f9a0c9ba035b4.php 4 - 7

  - Parameters [2] {
    Parameter #0 [ <required> $First_Args ]
    Parameter #1 [ <required> $Second_Args ]
  }
}
Function [ <user> function Trial2 ] {
  @@ /home/2410abe3ca2b5235249f9a0c9ba035b4.php 9 - 12

  - Parameters [2] {
    Parameter #0 [ <required> $First_Args ]
    Parameter #1 [ <required> $Second_Args ]
  }
}

參考: https://www.php.net/manual/en/reflectionfunction.export.php



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | ReflectionFunction export() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。