PHP code example of devtronic / php-annotation-lexer
1. Go to this page and download the library: Download devtronic/php-annotation-lexer 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/ */
devtronic / php-annotation-lexer example snippets
use Devtronic\PHPAnnotationLexer\PHPAnnotationLexer;
NNOTATION\DESC FooBar
* @ANNOTATION\PARAMETERS {
* baz(type="string", om above
$res = $lexer->lexFromString($data);
print_r($res);
// Lex a file
$res = $lexer->lexFromFile('./vendor/devtronic/php-annotation-lexer/PHPAnnotationLexer.php');
print_r($res);