1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 09:17:58 +01:00

Tweak readme

This commit is contained in:
nikic 2012-02-21 19:58:11 +01:00
parent 517562e05a
commit 48f089a111

View File

@ -67,10 +67,11 @@ array(
) )
``` ```
If you then stick that result into the pretty printer you'll get back PHP code again :) You can then work with this syntax tree, for example to statically analyze the code (e.g. to find
programming errors or security issues).
This is useful for a variety of situations where you want to deal with code programmatically, like static Additionally, you can convert a syntax tree back to PHP code. This allows you to do code preprocessing
analysis, code preprocessing and code generation. (like automatedly porting code to older PHP versions).
So, that's it, in a nutshell. You can find everything else in the [docs][1]. So, that's it, in a nutshell. You can find everything else in the [docs][1].