2018-03-01 22:31:36 +02:00
2018-01-13 01:58:59 +02:00
2018-02-27 15:34:43 +02:00
2018-02-20 20:22:15 +02:00
2018-02-20 20:22:15 +02:00
2018-02-18 13:51:03 +02:00
2018-02-27 23:38:05 +02:00
2018-02-18 12:55:32 +02:00
2018-02-20 20:22:15 +02:00
2018-01-05 13:22:38 +02:00
2018-01-05 19:49:29 +02:00
2018-01-05 19:37:08 +02:00
2018-02-20 19:37:42 +02:00
2018-01-05 19:23:10 +02:00
2018-01-02 14:37:19 +02:00
2018-03-01 22:31:36 +02:00
2018-02-24 00:19:05 +02:00
2018-02-27 23:59:27 +02:00

PHP-Parser

Go Report Card Exago Exago GoDoc

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
  • Namespace resolver

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
  • Namespace resolver
  • PhpDocComment parser
  • Error handling
  • Stabilize api
  • Documentation
  • Pretty printer
  • Code flow graph
Description
No description provided
Readme 13 MiB
Languages
Go 92.7%
Yacc 6%
Ragel 1.3%