📜  PHP | ReflectionClass hasMethod()函数

📅  最后修改于: 2022-05-13 01:56:43.286000             🧑  作者: Mango

PHP | ReflectionClass hasMethod()函数

ReflectionClass::hasMethod()函数是PHP中的一个内置函数,用于检查指定的方法是否存在。
句法:

bool ReflectionClass::hasMethod( string $name )

参数:此函数接受单个参数$name ,其中包含正在检查的方法的名称。
返回值:如果指定的方法存在,此函数返回 TRUE,否则返回 FALSE。
下面的程序说明了PHP中的 ReflectionClass::hasMethod()函数:
方案一:

php
hasMethod('CSE');
 
// Getting the value true or false
var_dump($methods);
?>


php
hasMethod('TCS');
  
// Getting the value true or false
var_dump($methods);
?>


输出:
bool(true)

方案二:

PHP

hasMethod('TCS');
  
// Getting the value true or false
var_dump($methods);
?>
输出:
bool(false)

参考: https: PHP。 PHP