To simply enlist all methods and properties of an object simply write:
<?php ReflectionObject::export($yourObject); ?>
,which will cause an var_export-like output.
The ReflectionObject class
(PHP 5)
Wstęp
The ReflectionObject class reports information about an object.
Krótki opis klasy
/* Stałe */
/* Właściwości */
/* Metody */
/* Metody dziedziczone */
ReflectionClass::__construct
( mixed
}$argument
)Właściwości
- name
-
Name of the object's class. Read-only, throws ReflectionException in attempt to write.
Spis treści
- ReflectionObject::__construct — Constructs a ReflectionObject
- ReflectionObject::export — Export
marcel dot nolte at noltecomputer dot de
01-Sep-2009 08:42
