Skip to content

Instantly share code, notes, and snippets.

@ichiriac
Created December 17, 2016 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ichiriac/aff712bf42774d4d16358eb40fefbfd1 to your computer and use it in GitHub Desktop.
Save ichiriac/aff712bf42774d4d16358eb40fefbfd1 to your computer and use it in GitHub Desktop.
A sample PHP file for showing AST with php-parser
<?php
/**
* Some namespace & file description
*/
namespace foo {
function bar($a, $b) {
return $a + $b;
}
// will print : 5
echo bar(2, 3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment