ReflectionParameter::__toString
ReflectionProperty::__clone
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
ReflectionProperty::__clone
— Özelliği kopyalar
ReflectionProperty::__construct
— Bir ReflectionProperty nesnesi oluşturur
ReflectionProperty::export
— Özelliği ihraç eder
ReflectionProperty::getDeclaringClass
— Bildiren sınıfı döndürür
ReflectionProperty::getDocComment
— Bilgilendirici açıklamaları döndürür
ReflectionProperty::getModifiers
— Değiştirici sayısını döndürür
ReflectionProperty::getName
— Özelliğin ismini döndürür
ReflectionProperty::getValue
— Özelliğin değerini döndürür
ReflectionProperty::isDefault
— Öntanımlı değer mi atanmış diye bakar
ReflectionProperty::isPrivate
— Özellik private olarak mı bildirilmiş diye bakar
ReflectionProperty::isProtected
— Özellik protected olarak mı bildirilmiş diye bakar
ReflectionProperty::isPublic
— Özellik public olarak mı bildirilmiş diye bakar
ReflectionProperty::isStatic
— Özellik duruk mu diye bakar
ReflectionProperty::setAccessible
— Özelliği erişilebilir kılar
ReflectionProperty::setValue
— Özelliğe değer atar
ReflectionProperty::__toString
— Dizgesel tepkiyi görselleştirir
ReflectionParameter::__toString
ReflectionProperty::__clone
Reflection
PHP Manual