unset.test 375 B

1234567891011121314151617181920212223242526
  1. Unset
  2. -----
  3. <?php
  4. unset($a);
  5. unset($b, $c);
  6. -----
  7. array(
  8. 0: Stmt_Unset(
  9. vars: array(
  10. 0: Expr_Variable(
  11. name: a
  12. )
  13. )
  14. )
  15. 1: Stmt_Unset(
  16. vars: array(
  17. 0: Expr_Variable(
  18. name: b
  19. )
  20. 1: Expr_Variable(
  21. name: c
  22. )
  23. )
  24. )
  25. )