PHP code example of pine3ree / pine3ree-reflection-helper
1. Go to this page and download the library: Download pine3ree/pine3ree-reflection-helper library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pine3ree / pine3ree-reflection-helper example snippets
use Closure;
use ReflectionClass;
use ReflectionFunction;
use ReflectionMethod;
use ReflectionParameter;
use ReflectionProperty;
use pine3ree\Helper\Reflection;
Reflection::getClass(object|class-string $objectOrClass); // @return ReflectionClass|null
Reflection::getProperties(object|class-string $objectOrClass); // @return array<string|ReflectionProperty>|null
Reflection::getProperty(object|class-string $objectOrClass, string $name); // @return ReflectionProperty|null
Reflection::getMethods(object|class-string $objectOrClass); // @return array<string|ReflectionMethod>|null
Reflection::getMethod(object|class-string $objectOrClass, string $name); // @return ReflectionMethod|null
Reflection::getConstructor(objectOrClass); // @return ReflectionMethod|null
Reflection::getFunction(string $function); // @return ReflectionFunction|null
Reflection::getParametersForMethod(object|class-string $objectOrClass, string $name, bool $check_existence = true); // @return array<int, ReflectionParameter>|null
Reflection::getParametersForConstructor(object|class-string $objectOrClass, bool $check_existence = true); // @return ReflectionParameter[]|null
Reflection::getParametersForInvokable(object $invokable); // @return ReflectionParameter[]|null
Reflection::getParametersForFunction(string $function, bool $check_existence = true); // @return ReflectionParameter[]|null
Reflection::clearCache(string $type = self::CACHE_ALL): void