Hello,
Reflection API is great thing out there to manipulate the OOP stuff and looks like most of the developers aren't even aware of that or have never used that.
Reflection API Claims:
PHP 5 comes with a complete reflection API that adds the ability to reverse-engineer classes, interfaces, functions, methods and extensions. Additionally, the reflection API offers ways to retrieve doc comments for functions, classes and methods.
Question:
- Why it has almost no documentation for most of its methods/properties? You see this message there on the documentation:
This function is currently not documented; only its argument list is available.
Where to find its documentation at all?
- Is it future-compatible, in other words, can i use in my MVC framework?
- Why it is used less often, anything wrong with it?