PHP code example of popsul / php-token-reflection
1. Go to this page and download the library: Download popsul/php-token-reflection 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/ */
popsul / php-token-reflection example snippets
namespace TokenReflection;
$broker = new Broker(new Broker\Backend\Memory());
$broker->processDirectory('~/lib/Zend_Framework');
$class = $broker->getClass('Zend_Version'); // returns a TokenReflection\ReflectionClass instance
$class = $broker->getClass('Exception'); // returns a TokenReflection\Php\ReflectionClass instance
$class = $broker->getClass('Nonexistent'); // returns a TokenReflection\Dummy\ReflectionClass instance
$function = $broker->getFunction(...);
$constant = $broker->getConstant(...);