Reflection
PHP Manual

ReflectionProperty Sınıfı

(PHP 5)

Giriş

ReflectionProperty sınıfı bir sınıfın özellikleri hakkında bilgi edinilmesini sağlar.

Sınıf Sözdizimi

ReflectionProperty implements Reflector {
/* Sabitler */
const integer IS_STATIC = 1 ;
const integer IS_PUBLIC = 256 ;
const integer IS_PROTECTED = 512 ;
const integer IS_PRIVATE = 1024 ;
/* Özellikler */
public $name ;
public $class ;
/* Yöntemler */
final private void __clone ( void )
__construct ( mixed $sınıf , string $isim )
public static string export ( mixed $sınıf , string $isim [, bool $ihracet ] )
public ReflectionClass getDeclaringClass ( void )
public string getDocComment ( void )
public int getModifiers ( void )
public string getName ( void )
public mixed getValue ([ string $özellik ] )
public bool isDefault ( void )
public bool isPrivate ( void )
public bool isProtected ( void )
public bool isPublic ( void )
public bool isStatic ( void )
public void setAccessible ( bool $erişilebilir )
public void setValue ( object $nesne , mixed $değer )
public string __toString ( void )
}

Özellikler

name

Özelliğin ismi. Salt-okunur olup, bir yazma çabası ReflectionException istisnasına yol açar.

class

Özelliği tanımlayan sınıfın ismi. Salt-okunur olup, bir yazma çabası ReflectionException istisnasına yol açar.

Öntanımlı Sabitler

ReflectionProperty Değiştiricileri

ReflectionProperty::IS_STATIC

Özelliğin static olduğunu belirtir.

ReflectionProperty::IS_PUBLIC

Özelliğin public olduğunu belirtir.

ReflectionProperty::IS_PROTECTED

Özelliğin protected olduğunu belirtir.

ReflectionProperty::IS_PRIVATE

Özelliğin private olduğunu belirtir.

İçindekiler


Reflection
PHP Manual