comment | ||
node | ||
php5 | ||
php7 | ||
position | ||
scanner | ||
token | ||
visitor | ||
walker | ||
.gitignore | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
diff | ||
ISSUE_TEMPLATE.md | ||
LICENSE | ||
log | ||
main.go | ||
Makefile | ||
README.md |
PHP-Parser
A Parser for PHP written in Go inspired by Nikic PHP Parser
Features:
- Fully support PHP5 and PHP7 syntax
- Abstract syntax tree representation
- Traversing AST
Install
go get github.com/z7zmey/php-parser
Example
package main
import (
"bytes"
"github.com/z7zmey/php-parser/php7"
"github.com/z7zmey/php-parser/visitor"
)
func main() {
src := bytes.NewBufferString(`<? echo "Hello world";`)
nodes, comments, positions := php7.Parse(src, "example.php")
visitor := visitor.Dumper{
Indent: "",
Comments: comments,
Positions: positions,
}
nodes.Walk(visitor)
}
CLI dumper
$GOPATH/bin/php-parser /path/to/file/or/dir
Roadmap
- Lexer
- PHP 7 syntax analyzer
- AST nodes
- AST visitor
- AST dumper
- node position
- handling comments
- PHP 5 syntax analyzer
- Tests
- PhpDocComment parser
- Namespace resolver
- Error handling
- Stabilize api
- Documentation
- Pretty printer
- Code flow graph