📜  PHP | ReflectionMethod isDestructor()函数

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

PHP | ReflectionMethod isDestructor()函数

ReflectionMethod::isDestructor()函数是PHP中的一个内置函数,如果指定的方法是析构函数,则用于返回 TRUE,否则返回 FALSE。

句法:

bool ReflectionMethod::isDestructor( void )

参数:此函数不接受任何参数。

返回值:如果指定的方法是析构函数,该函数返回TRUE,否则返回FALSE。

下面的程序说明了PHP中的 ReflectionMethod::isDestructor()函数:

方案一:

isDestructor();
  
// Getting the value TRUE if the specified
// method is destructor, otherwise FALSE.
var_dump($B);
?>

输出:

bool(true)

方案二:

isDestructor());
var_dump($B->isDestructor());
var_dump($C->isDestructor());
?>

输出:

bool(false)
bool(true)
bool(false)

参考: https://www. PHP.net/manual/en/reflectionmethod.isdestructor。 PHP