📜  PHP ReflectionClass hasProperty()函数

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

PHP ReflectionClass hasProperty()函数

ReflectionClass hasProperty()函数是PHP中的一个内置函数,用于检查指定的属性是否存在。

句法:

bool ReflectionClass hasProperty( string $name )

参数:此函数接受单个参数$name ,其中包含正在检查的属性的名称。
返回值:如果指定的属性存在,此函数返回 true,否则返回 false。
下面的程序说明了PHP中的 ReflectionClass hasProperty()函数:

方案一:

php
hasProperty($a);
 
// Getting the value true or false
var_dump($Property);
?>


php
hasProperty($Class);
  
// Getting the value either true or false
var_dump($A);
?>


输出:
bool(true)

方案二:

PHP

hasProperty($Class);
  
// Getting the value either true or false
var_dump($A);
?>
输出:
bool(false)

参考: https://www. PHP.net/manual/en/reflectionclass.hasproperty。 PHP