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
相關用法
- PHP ReflectionClass getTraits()用法及代碼示例
- PHP ReflectionClass getReflectionConstant()用法及代碼示例
- PHP ReflectionClass isFinal()用法及代碼示例
- PHP ReflectionClass getTraitNames()用法及代碼示例
- PHP ReflectionClass getExtensionName()用法及代碼示例
- PHP ReflectionClass getInterfaces()用法及代碼示例
- PHP ReflectionClass isInstance()用法及代碼示例
- PHP ReflectionClass getTraitAliases()用法及代碼示例
- PHP ReflectionClass hasMethod()用法及代碼示例
- PHP ReflectionClass getProperties()用法及代碼示例
- PHP ReflectionClass getProperty()用法及代碼示例
- PHP ReflectionClass getStaticProperties()用法及代碼示例
- PHP ReflectionClass getDefaultProperties()用法及代碼示例
- PHP ReflectionClass __toString()用法及代碼示例
- PHP ReflectionClass getFileName()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | ReflectionClass getMethod() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。