php-parser/test/code/parser/stmt/unset.test

26 lines
375 B
Plaintext
Raw Normal View History

2011-11-27 11:20:35 +01:00
Unset
-----
<?php
unset($a);
unset($b, $c);
-----
array(
0: Stmt_Unset(
vars: array(
0: Expr_Variable(
name: a
)
)
)
1: Stmt_Unset(
vars: array(
0: Expr_Variable(
name: b
)
1: Expr_Variable(
name: c
)
)
)
)