PHP 8.4.2 Released!

ReflectionObject Sınıfı

(PHP 5, PHP 7, PHP 8)

Giriş

ReflectionObject sınıfı bir nesne (object) hakkında bigi edinilmesini sağlar.

Sınıf Sözdizimi

class ReflectionObject extends ReflectionClass {
/* Miras alınan sabitler */
/* Miras alınan özellikler */
public string $name;
/* Yöntemler */
public __construct(object $object)
/* Miras alınan yöntemler */
public static ReflectionClass::export(mixed $bağımsız_değişken, bool $return = false): string
public ReflectionClass::getAttributes(?string $name = null, int $flags = 0): array
public ReflectionClass::getStaticPropertyValue(string $isim, mixed &$öntanımlı = ?): mixed
public ReflectionClass::newInstance(mixed $bağımsız_değişkenler): object
public ReflectionClass::newInstanceArgs(array $bağımsız_değişkenler = []): ?object
public ReflectionClass::newLazyGhost(callable $initializer, int $options = 0): object
public ReflectionClass::newLazyProxy(callable $factory, int $options = 0): object
public ReflectionClass::resetAsLazyGhost(object $object, callable $initializer, int $options = 0): void
public ReflectionClass::resetAsLazyProxy(object $object, callable $factory, int $options = 0): void
}

Sürüm Bilgisi

Sürüm: Açıklama
8.0.0 ReflectionObject::export() kaldırıldı.

İçindekiler

add a note

User Contributed Notes 1 note

up
6
marcel dot nolte at noltecomputer dot de
15 years ago
To simply enlist all methods and properties of an object simply write:

<?php ReflectionObject::export($yourObject); ?>

,which will cause an var_export-like output.
To Top