update : 2015.11.03
php.shukuma.com

검색:
 
 
Checks if property is a default property

ReflectionProperty::isDefault

(PHP 5)

ReflectionProperty::isDefaultChecks if property is a default property

설명

public bool ReflectionProperty::isDefault ( void )

Checks whether the property was declared at compile-time, or whether the property was dynamically declared at run-time.

인수

이 함수는 인수가 없습니다.

반환값

TRUE if the property was declared at compile-time, or FALSE if it was created at run-time.

예제

Example #1 ReflectionClass::isDefault() example

<?php
class Foo {
    public 
$bar;
}

$o = new Foo();
$o->bar 42;
$o->baz 42;

$ro = new ReflectionObject($o);
var_dump($ro->getProperty('bar')->isDefault());
var_dump($ro->getProperty('baz')->isDefault());
?>

위 예제의 출력:

bool(true)
bool(false)

참고