tpunt/php-ast-reverter
最新稳定版本:v2.0
Composer 安装命令:
composer require tpunt/php-ast-reverter
包简介
Reverts an AST back into (somewhat) PSR-compliant code
README 文档
README
A tool that reverts an abstract syntax tree (AST) produced by the php-ast extension back into (somewhat) PSR-compliant code. This enables for code preprocessing to be done.
Requirements:
- PHP 7.*
- php-ast extension (compatible with versions 30, 35, 40, 45, and 50)
Installation
Composer
composer require tpunt/php-ast-reverter
Example
Running the following code snippet:
<?php $code = <<<'end' <?php /** * My testing class */ class ClassName extends AnotherClass implements AnInterface { /** * Some property */ private $prop = 0; const TEST = 'string'; use TraitA, TraitB { TraitA::func1 insteadof TraitB; TraitB::func1 as protected func2; } /** * Some useless constructor */ function __construct(int $arg = 1) { $this->prop = $arg; } } end; $ast = ast\parse_code($code, $version=40); echo (new AstReverter\AstReverter)->getCode($ast);
Will output:
<?php /** * My testing class */ class ClassName extends AnotherClass implements AnInterface { /** * Some property */ private $prop = 0; const TEST = "string"; use TraitA, TraitB { TraitA::func1 insteadof TraitB; TraitB::func1 as protected func2; } /** * Some useless constructor */ public function __construct(int $arg = 1) { $this->prop = $arg; } }
统计信息
- 总下载量: 86
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 52
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-30