Package Exports
- php-parser
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (php-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
php-parser
Parse PHP code from NodeJS and convert it to AST. This library is a standalone module of a larger project named Glayzzle.
Install it
$ npm install php-parser --saveTry it
$ cd bin
$ node test.js -e "echo 'Hello World';"Will output :
*** START TESTING ***
-- TOKENS :
T_ECHO T_CONSTANT_ENCAPSED_STRING ;
-- AST :
[ 'program',
[ [ 'sys',
'echo',
[ [ 'string', '"Hello World"' ] ] ] ] ]Try it online (demo) : https://tonicdev.com/ichiriac/php-parser
Use it
var parser = require('php-parser');
var AST = parser.parseEval('echo "Hello World";');
console.log(AST);
var tokens = parser.tokenGetAll('<?php echo "Hello World";');
console.log(tokens);For more details please visit he wiki.
Join the dev
If you want to change/fix the lexer you will find code to ./src/lexer/.
You can also implement the parser, the code is into ./src/parser/.
To check your changes add tests into ./test/parser/, and run npm run test.
Try to keep or improve the coverage levels.
The command line options :
Usage: test [options] [-f] <file>
-f <file> Parse and test the specified file
-d <path> Parse each file in the specified path
-r Use recursivity with the specified path
-e Eval the specified input and shows AST
-v Enable verbose mode and show debug
-h, --help Print help and exitIf you run into problems with a test, run it with the cli and add the --debug flag.
Releases
- 0.1.0 : major release, rewriting of the lexer and many bug fixes
- 0.0.10 : bugfixes and php7 implementation
- 0.0.9 : const (value as expr) bugfix
- 0.0.8 : all tokens are passed on ZF2 (many fixes)
- 0.0.7 : isset, unset, try, catch, finally, fix T_STATIC, fix T_NEW with a dynamic var name, improve tests
- 0.0.6 : Improve tests, implements arrays & new statements
- 0.0.5 : Implement traits
Misc
This library is released under BSD-3 license clause.