Reflection
PHP Manual

ReflectionProperty Sınıfı

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 ReflectionProperty::IS_STATIC = 1 ;
const integer ReflectionProperty::IS_PUBLIC = 256 ;
const integer ReflectionProperty::IS_PROTECTED = 512 ;
const integer ReflectionProperty::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

İsim.

class

Sınıf

Öntanımlı Sabitler

ReflectionProperty Düğüm Türleri

ReflectionProperty::IS_STATIC

ReflectionProperty::IS_PUBLIC

ReflectionProperty::IS_PROTECTED

ReflectionProperty::IS_PRIVATE

İçindekiler


Reflection
PHP Manual