= 5.1.2, PHP 7, PHP 8)ReflectionClass::hasProperty — 檢查屬性是否已定義說(shuō)明public ReflectionClass::hasProperty(string $name):">

ReflectionClass::hasProperty

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

ReflectionClass::hasProperty檢查屬性是否已定義

說(shuō)明

public ReflectionClass::hasProperty(string $name): bool

檢查指定的屬性是否已定義。

參數(shù)

name

待檢查的屬性的名稱。

返回值

如果有這個(gè)屬性返回 true,否則返回 false。

范例

示例 #1 ReflectionClass::hasProperty() 例子

<?php
class 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)

參見(jiàn)