1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/test/code/parser/expr/print.test
2017-01-19 22:25:22 +01:00

14 lines
179 B
Plaintext

Print
-----
<?php
print $a;
-----
array(
0: Stmt_Expression(
expr: Expr_Print(
expr: Expr_Variable(
name: a
)
)
)
)