while.test 307 B

12345678910111213141516171819202122232425
  1. While loop
  2. -----
  3. <?php
  4. while ($a) {}
  5. while ($a):
  6. endwhile;
  7. -----
  8. array(
  9. 0: Stmt_While(
  10. cond: Expr_Variable(
  11. name: a
  12. )
  13. stmts: array(
  14. )
  15. )
  16. 1: Stmt_While(
  17. cond: Expr_Variable(
  18. name: a
  19. )
  20. stmts: array(
  21. )
  22. )
  23. )