gnu-social/vendor/nikic/php-parser/test/code/parser/stmt/unset.test
2020-08-07 23:42:38 +01:00

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