PHP | ReflectionMethod isConstructor()函数
ReflectionMethod::isConstructor()函数是PHP中的一个内置函数,如果指定的方法是构造函数,则用于返回 TRUE,否则返回 FALSE。
句法:
bool ReflectionMethod::isConstructor( void )
参数:此函数不接受任何参数。
返回值:如果指定的方法是构造函数,该函数返回TRUE,否则返回FALSE。
下面的程序说明了PHP中的 ReflectionMethod::isConstructor()函数:
方案一:
isConstructor();
// Getting the value TRUE if the specified
// method is constructor, otherwise FALSE.
var_dump($B);
?>
输出:
bool(true)
方案二:
isConstructor());
var_dump($B->isConstructor());
var_dump($C->isConstructor());
?>
输出:
bool(false)
bool(true)
bool(false)
参考: https://www. PHP.net/manual/en/reflectionmethod.isconstructor。 PHP