I want to parse a PHP source file, into an AST (preferably as a nested array of instructions).
I basically want to convert things like
f($a, $b + 1)
I have implemented a PHP Parser after I figured out that there was no existing parser. It parses the PHP code into a node tree.