The new Abstract Syntax Tree (AST) in PHP 7 means the way our PHP code is being executed has changed. Understanding this new fundamental compilation step is key to understanding how our code is being run.

To demonstrate, James will show how a basic compiler works and how introducing an AST simplifies this process. We’ll look into how these magical time-warp techniques* can also be used in your code to introspect, analyse and modify code in a way that was never possible before.

After seeing this talk, you'll have a great insight as to the wonders of an AST, and how it can be applied to both compilers and userland code.

(*actual magic or time-warp not guaranteed)

Comments

Comments are closed.

Cecili Reid at 10:23 on 24 Oct 2019

Great job at making something I thought would be extremely complex very understandable. I also appreciate not just learning about what AST is but also why it might be useful to know and how I can apply it.

Dana Luther at 16:34 on 24 Oct 2019

This was a great explanation. I really appreciated the clarity of the examples and there was just enough levity in the presentation style to make a potentially dry topic quite lively.

Tim Gallagher at 21:46 on 24 Oct 2019

Writing a lexer and parser in a presentation? OK then. I learned a lot.

Rain at 03:59 on 30 Oct 2019

Very good insight how exactly PHP code parsing works.