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


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


ReflectionClass::hasMethod()函數是PHP中的內置函數,用於檢查指定的方法是否存在。

用法:

bool ReflectionClass::hasMethod( string $name )

參數:該函數接受單個參數$name,該參數保存正在檢查的方法的名稱。


返回值:如果存在指定的方法,則此函數返回TRUE,否則返回FALSE。

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

程序1:

<?php 
  
// Initialising a user-defined Class Departments 
class Departments { 
    public function CSE() { } 
    final protected function ECE() { } 
    private static function EE() { } 
    static function IT() { } 
    private function Mechnical() { } 
} 
  
// Using ReflectionClass() over the 
// user-defined class Departments 
$class = new ReflectionClass('Departments'); 
  
// Calling the hasMethod() function 
$methods = $class->hasMethod('CSE'); 
  
// Getting the value true or false 
var_dump($methods); 
?>
輸出:
bool(true)

程序2:

<?php 
   
// Initialising a user-defined Class Company 
class Company { 
    public function GeeksforGeeks() { } 
    static function gfg() { } 
} 
   
// Using ReflectionClass() over the 
// user-defined class Company 
$class = new ReflectionClass('Company'); 
   
// Calling the hasMethod() function 
$methods = $class->hasMethod('TCS'); 
   
// Getting the value true or false 
var_dump($methods); 
?>
輸出:
bool(false)

參考: https://php.net/manual/en/reflectionclass.hasmethod.php



相關用法


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