property_exists() 函數(shù)檢查對象或類是否具有該屬性
property_exists ( $object, $property );
此函數(shù)檢查給定的屬性是否存在于指定的類中(以及是否可以從當(dāng)前作用域訪問)。
序號 | 參數(shù)及說明 |
---|---|
1 | object(必需) 字符串形式的類名或要檢查的類的一個對象 |
2 | property(必需) 屬性的名稱。 |
如果該屬性存在,則返回TRUE;如果該屬性不存在,則返回FALSE;如果發(fā)生錯誤,則返回NULL。
以下是此函數(shù)的用法-
<?php class myClass { public $mine; private $xpto; static protected $test; static function test() { var_dump(property_exists('myClass', 'xpto')); //true } } var_dump(property_exists('myClass', 'mine')); //true var_dump(property_exists(new myClass, 'mine')); //true var_dump(property_exists('myClass', 'xpto')); //true, 從PHP 5.3.0開始 var_dump(property_exists('myClass', 'bar')); //false var_dump(property_exists('myClass', 'test')); //true, 從PHP 5.3.0開始 myClass::test(); ?>