Files
faveo/vendor/nikic/php-parser/test/code/parser/stmt/unset.test
Bhanu Slathia b1f62846ab Update v1.0.6
2016-02-16 23:24:52 +05:30

26 lines
375 B
Plaintext

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
)
)
)
)