1. Go to this page and download the library: Download jasny/meta 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/ */
jasny / meta example snippets
use Jasny\Meta\Factory;
$factory = new Factory($source, $cache);
$meta = $factory->forClass(FooBar::class);
/**
* Original FooBar class
*
* @package FoosAndBars
* @author Jimi Hendrix <[email protected]>
*/
class FooBar
{
/**
* Very first property
* @var array
* @ * Protected properties are not
use Jasny\Meta\Source\PhpdocSource;
use Jasny\ReflectionFactory\ReflectionFactory;
use Jasny\PhpdocParser\PhpdocParser;
use Jasny\PhpdocParser\Set\PhpDocumentor;
$reflectionFactory = new ReflectionFactory();
$tags = PhpDocumentor::tags();
$phpdocParser = new PhpdocParser($tags);
$source = new PhpdocSource($reflectionFactory, $phpdocParser);
$meta = $source->forClass(FooBar::class);
var_export($meta);
use Jasny\Meta\Source\ReflectionSource;
use Jasny\ReflectionFactory\ReflectionFactory;
$reflectionFactory = new ReflectionFactory();
$source = new ReflectionSource($reflectionFactory);
$meta = $source->forClass(FooBar::class);
var_export($meta);