Php/docs/reflectionclass.hasproperty
来自菜鸟教程
ReflectionClass::hasProperty
(PHP 5 >= 5.1.2, PHP 7)
ReflectionClass::hasProperty — 检查属性是否已定义
说明
public ReflectionClass::hasProperty
( string $name
) : bool
检查指定的属性是否已定义。
参数
name
- 待检查的属性的名称。
返回值
如果有这个属性返回 true
,否则返回 false
。
范例
Example #1 ReflectionClass::hasProperty() 例子
<?phpclass Foo { public $p1; protected $p2; private $p3;}$obj = new ReflectionObject(new Foo());var_dump($obj->hasProperty("p1"));var_dump($obj->hasProperty("p2"));var_dump($obj->hasProperty("p3"));var_dump($obj->hasProperty("p4"));?>
以上例程的输出类似于:
bool(true) bool(true) bool(true) bool(false)