2011-05-31 18:01:00 +02:00
|
|
|
PHP Parser
|
|
|
|
==========
|
|
|
|
|
2016-02-20 21:53:08 +01:00
|
|
|
[![Build Status](https://travis-ci.org/nikic/PHP-Parser.svg?branch=master)](https://travis-ci.org/nikic/PHP-Parser) [![Coverage Status](https://coveralls.io/repos/github/nikic/PHP-Parser/badge.svg?branch=master)](https://coveralls.io/github/nikic/PHP-Parser?branch=master)
|
|
|
|
|
2017-10-03 19:13:20 +02:00
|
|
|
This is a PHP 5.2 to PHP 7.2 parser written in PHP. Its purpose is to simplify static code analysis and
|
2011-05-31 18:01:00 +02:00
|
|
|
manipulation.
|
|
|
|
|
2017-09-02 20:03:10 +02:00
|
|
|
[**Documentation for version 3.x**][doc_3_x] (stable; for running on PHP >= 5.5; for parsing PHP 5.2 to PHP 7.2).
|
2016-10-29 13:37:47 +02:00
|
|
|
|
2017-10-03 19:13:20 +02:00
|
|
|
[Documentation for version 4.x][doc_master] (development; for running on PHP >= 7.0; for parsing PHP 5.2 to PHP 7.2).
|
2014-09-12 14:40:17 +02:00
|
|
|
|
2012-02-21 19:52:49 +01:00
|
|
|
In a Nutshell
|
|
|
|
-------------
|
|
|
|
|
2014-09-12 14:40:17 +02:00
|
|
|
The parser turns PHP source code into an abstract syntax tree. For example, if you pass the following code into the
|
|
|
|
parser:
|
2012-02-21 19:52:49 +01:00
|
|
|
|
|
|
|
```php
|
|
|
|
<?php
|
|
|
|
echo 'Hi', 'World';
|
|
|
|
hello\world('foo', 'bar' . 'baz');
|
|
|
|
```
|
|
|
|
|
|
|
|
You'll get a syntax tree looking roughly like this:
|
|
|
|
|
2015-06-26 00:30:22 +02:00
|
|
|
```php
|
2012-02-21 19:52:49 +01:00
|
|
|
array(
|
|
|
|
0: Stmt_Echo(
|
|
|
|
exprs: array(
|
|
|
|
0: Scalar_String(
|
|
|
|
value: Hi
|
|
|
|
)
|
|
|
|
1: Scalar_String(
|
|
|
|
value: World
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Expr_FuncCall(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: hello
|
|
|
|
1: world
|
|
|
|
)
|
|
|
|
)
|
|
|
|
args: array(
|
|
|
|
0: Arg(
|
|
|
|
value: Scalar_String(
|
|
|
|
value: foo
|
|
|
|
)
|
|
|
|
byRef: false
|
|
|
|
)
|
|
|
|
1: Arg(
|
|
|
|
value: Expr_Concat(
|
|
|
|
left: Scalar_String(
|
|
|
|
value: bar
|
|
|
|
)
|
|
|
|
right: Scalar_String(
|
|
|
|
value: baz
|
|
|
|
)
|
|
|
|
)
|
|
|
|
byRef: false
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2012-02-21 19:58:11 +01:00
|
|
|
You can then work with this syntax tree, for example to statically analyze the code (e.g. to find
|
|
|
|
programming errors or security issues).
|
2012-02-21 19:52:49 +01:00
|
|
|
|
2012-02-21 19:58:11 +01:00
|
|
|
Additionally, you can convert a syntax tree back to PHP code. This allows you to do code preprocessing
|
|
|
|
(like automatedly porting code to older PHP versions).
|
2012-02-21 19:52:49 +01:00
|
|
|
|
2015-09-16 15:16:29 +02:00
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
The preferred installation method is [composer](https://getcomposer.org):
|
|
|
|
|
|
|
|
php composer.phar require nikic/php-parser
|
|
|
|
|
2015-03-10 21:32:21 +01:00
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
|
|
|
|
1. [Introduction](doc/0_Introduction.markdown)
|
2015-09-16 15:16:29 +02:00
|
|
|
2. [Usage of basic components](doc/2_Usage_of_basic_components.markdown)
|
|
|
|
3. [Other node tree representations](doc/3_Other_node_tree_representations.markdown)
|
|
|
|
4. [Code generation](doc/4_Code_generation.markdown)
|
2017-04-08 23:27:43 +02:00
|
|
|
5. [Frequently asked questions](doc/5_FAQ.markdown)
|
2015-03-10 21:32:21 +01:00
|
|
|
|
|
|
|
Component documentation:
|
|
|
|
|
2017-10-03 19:09:27 +02:00
|
|
|
* [Name resolution](doc/component/Name_resolution.markdown)
|
|
|
|
* [Pretty printing](doc/component/Pretty_printing.markdown)
|
|
|
|
* [Lexer](doc/component/Lexer.markdown)
|
|
|
|
* [Error handling](doc/component/Error_handling.markdown)
|
2011-08-04 18:19:45 +02:00
|
|
|
|
2017-01-19 20:48:57 +01:00
|
|
|
[doc_3_x]: https://github.com/nikic/PHP-Parser/tree/3.x/doc
|
2015-05-02 22:07:16 +02:00
|
|
|
[doc_master]: https://github.com/nikic/PHP-Parser/tree/master/doc
|