(PHP 5 >= 5.1.0)
property_exists — 객체나 클래스가 프로퍼티를 가졌는지 확인
주어진 property 가 지정한 클래스에 존재하는지 확인합니다.
Note: isset()과 다르게, property_exists()는 프로퍼티가 NULL 값을 가지고 있어도 TRUE를 반환합니다.
확인할 클래스명이나 클래스의 객체
프로퍼티명
프로퍼티가 존재하면 TRUE, 존재하지 않으면 FALSE, 오류시엔 NULL을 반환합니다.
버전 | 설명 |
---|---|
5.3.0 | 이 함수는 접근성에 관계 없이 프로퍼티의 존재성을 확인합니다. |
Example #1 property_exists() 예제
<?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, as of PHP 5.3.0
var_dump(property_exists('myClass', 'bar')); //false
var_dump(property_exists('myClass', 'test')); //true, as of PHP 5.3.0
myClass::test();
?>