diff options
author | Andi Gutmans <andi@php.net> | 2003-10-20 22:02:10 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2003-10-20 22:02:10 +0000 |
commit | 28957fd5364e2fad4b29a2a7b979e023998f74ec (patch) | |
tree | 3bb00b8c85803bd9d871f4fcede4d2a17bb2cdf9 /Zend/ZEND_CHANGES | |
parent | 44164170f3b25f34ae713e3ac34619dd7680bae4 (diff) | |
download | php-git-28957fd5364e2fad4b29a2a7b979e023998f74ec.tar.gz |
- Add comment from Timm
Diffstat (limited to 'Zend/ZEND_CHANGES')
-rw-r--r-- | Zend/ZEND_CHANGES | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Zend/ZEND_CHANGES b/Zend/ZEND_CHANGES index 898cad6e32..27de0d9656 100644 --- a/Zend/ZEND_CHANGES +++ b/Zend/ZEND_CHANGES @@ -685,8 +685,15 @@ Changes in the Zend Engine 2.0 $str = (string) $obj; // call __toString() ?> - * Reflection - + * Reflection API + + PHP5 comes with a complete reflection API that adds the ability to + reverse-engineer classes, interfaces, functions and methods as well + as extensions. + + The reflection API also offers ways of getting doc comments for + functions, classes and methods. + Nearly all aspects of object oriented code can be reflected by using the reflection API which is documented separatley: http://sitten-polizei.de/php/reflection_api/docs/language.reflection.html |