diff options
author | Stanislav Malyshev <stas@php.net> | 2003-01-22 14:55:01 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2003-01-22 14:55:01 +0000 |
commit | d433a62ef45e129ba3809d1c8635003616b7fcfd (patch) | |
tree | ace9f579234b5b8e05e0f88b0fe0425be3018e54 /Zend/OBJECTS2_HOWTO | |
parent | 72cd67b3cadb90a436adeb9ed8b26a6a5c8c4b56 (diff) | |
download | php-git-d433a62ef45e129ba3809d1c8635003616b7fcfd.tar.gz |
some small refinements for get_class_*
Diffstat (limited to 'Zend/OBJECTS2_HOWTO')
-rw-r--r-- | Zend/OBJECTS2_HOWTO | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Zend/OBJECTS2_HOWTO b/Zend/OBJECTS2_HOWTO index ce0fbdb3ea..aef370330d 100644 --- a/Zend/OBJECTS2_HOWTO +++ b/Zend/OBJECTS2_HOWTO @@ -101,8 +101,10 @@ compared. Objects - reflection -------------------- -get_class_name is used to retrieve class name of the object. No other -reflection functions are currently implemented. +get_class_name is used to retrieve class name of the object. +get_class_entry returns class entry (zend_class_entry) for the object, +in case there exists PHP class for it. +No other reflection functions are currently implemented. Objects - data structures and handlers --------------------------------------- @@ -186,7 +188,7 @@ for any other PHP internal function). get_constructor - get description for the object constructor method -get_class_entry - should return the class entry +get_class_entry - should return the class entry for the object get_class_name - get the name of the class the object belongs to |