PHP Parser written in Go ======================== PHP Parser written in Go [![Go Report Card](https://goreportcard.com/badge/github.com/z7zmey/php-parser)](https://goreportcard.com/report/github.com/z7zmey/php-parser) [![Exago](https://api.exago.io:443/badge/tests/github.com/z7zmey/php-parser)](https://exago.io/project/github.com/z7zmey/php-parser) [![Exago](https://api.exago.io:443/badge/cov/github.com/z7zmey/php-parser)](https://exago.io/project/github.com/z7zmey/php-parser) [![GoDoc](https://godoc.org/github.com/z7zmey/php-parser?status.svg)](https://godoc.org/github.com/z7zmey/php-parser) This project uses [goyacc](https://godoc.org/golang.org/x/tools/cmd/goyacc) and [golex](https://github.com/cznic/golex) libraries to parse PHP sources into [AST](https://en.wikipedia.org/wiki/Abstract_syntax_tree). It can be used to write static analysis, refactoring, metrics, code style formatting tools. #### Try it online: [demo](https://php-parser.com) Features: --------- - Fully support PHP 5 and PHP 7 syntax - Abstract syntax tree (AST) representation - Traversing AST - Namespace resolver - Able to parse syntax-invalid PHP files Roadmap ------- - Pretty printer - Control Flow Graph (CFG) - PhpDocComment parser - Stabilize api Install ------- ``` go get github.com/z7zmey/php-parser ``` CLI --- ``` php-parser [-php5 -noDump] ... ``` Dump AST to stdout. Example ------- ```Golang package main import ( "fmt" "bytes" "os" "github.com/z7zmey/php-parser/php7" "github.com/z7zmey/php-parser/visitor" ) func main() { src := bytes.NewBufferString(`