php-parser/doc.go
2018-02-20 19:33:03 +02:00

43 lines
708 B
Go

/*
A Parser for PHP written in Go
Features:
Fully support PHP5 and PHP7 syntax
Abstract syntax tree representation
Traversing AST
Install
go get github.com/z7zmey/php-parser
CLI dumper
$GOPATH/bin/php-parser -php5 /path/to/file/or/dir
Package usage 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)
}
*/
package main // import "github.com/z7zmey/php-parser"