What is AST Inspector? How to use the PHP AST step debugger?

藏色散人
Release: 2023-04-11 08:34:02
forward
2813 people have browsed it

This article will introduce to you what AST Inspector is and how to use the PHP AST step debugger. I hope it will be helpful to friends in need~

When you learn to write custom rules for PHPStan or Rector, you also Must learn more about PHP programming language.

More precisely, it's about the way the interpreter parses PHP code. The result of parsing PHP code is a node tree that represents the structure of the code. For example, you will have a definition node for a class, a definition node for a method, and declaration nodes within these methods, etc.

Each node can be checked for errors (using PHPStan), or automatically reconstructed in some way (using Rector). [Recommended learning:PHP video tutorial]

This node tree is calledAbstract Syntax Tree. A successful PHPStan or Rector rule must first be selected from the tree correct nodes and "subscribe" your rules to these nodes. A common approach is to startvar_dump-ing orecho-ing the node in your new rule, but I find this to be tedious.

That's why I created a simple command line tool that lets you inspect the nodes of any given PHP file.

This tool is called AST Inspector and can be found on GitHub.

GitHub address: https://github.com/matthiasnoback/php-ast-inspector/

Install it with Composer.

composer require --dev matthiasnoback/php-ast-inspector
Copy after login

Then run.

vendor/bin/ast-inspect inspect [file.php]
Copy after login

You will see something similar to this output.

Screenshot of PHP AST inspector

You can navigate in the tree by going to the next or previous node, or jump to the child nodes of the selected node. Navigation can be easily done using thea,s,d,wkeys.

Currently this project uses the PHP-Parser library for parsing. Since PHPStan adds extra virtual nodes to the AST, it would also be useful to display them in this tool, but it requires some extra work. Another interesting addition is to display the types deduced by PHPStan for variables in the code being inspected. This also requires some extra work...

Now, give this program a try.

The above is the detailed content of What is AST Inspector? How to use the PHP AST step debugger?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.im
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!