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


PHP ReflectionClass getMethod()用法及代碼示例


ReflectionClass::getMethod()函數是PHP中的內置函數,用於為指定的類方法返回ReflectionMethod。

用法:

ReflectionMethod ReflectionClass::getMethod ( string $name )

參數:此函數接受參數$name,它是方法名。


返回值:此函數為指定的類方法返回ReflectionMethod。

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

<?php 
  
// Using ReflectionClass over the inbuilt class 
// 'ReflectionClass' 
$class = new ReflectionClass('ReflectionClass'); 
  
// Calling the getMethod over the method named 
// as 'getMethod' 
$method = $class->getMethod('getMethod'); 
  
// Getting the ReflectionMethod for the specified 
// inbuilt class method. 
var_dump($method); 
?>

輸出:

object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(9) "getMethod"
  ["class"]=>
  string(15) "ReflectionClass"
}

參考: https://www.php.net/manual/en/reflectionclass.getmethod.php



相關用法


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