Download the PHP package fsi/reflection without Composer
On this page you can find all versions of the php package fsi/reflection. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download fsi/reflection
More information about fsi/reflection
Files in fsi/reflection
Package reflection
Short Description FSi Reflection Component is an extension of built-in reflection classes in PHP 5.3 that saves a lot memory, thanks to factory design pattern.
License
Informations about the package reflection
Reflection - Optimized reflection package for PHP 5.3
FSi Reflection component is an extension of built-in reflection classes in PHP 5.3. Some of their methods are rewritten in such way that reflection objects are cached and never created twice for the same class/method/property/function or extension. This is achieved by usage of factory pattern. Some of the methods that cannot be rewriten to use such a cache throw an exception. All ReflectionProperty and ReflectionMethod objects returned from this library are previously set as accessible so they can be used even if they're private or protected.
Setup and autoloading
We highly recommend to use autoloader generated by composer.phar
Adding reflection into composer.json
{
...
"require": {
...
"fsi/reflection": "0.9.*"
...
},
...
}
Usage example
The key idea of using this reflection library is not to contruct reflection classes by their constructors but through the factory() methods added to each reflection class. Let's assume we have a class named ClassA:
In order to create reflection objects you can:
You must remember that using any reflection class' constructor directly in your code will throw an exception.