菜谱项目

conditional.test 583B

12345678910111213141516171819202122232425262728293031323334
  1. Conditional function definition
  2. -----
  3. <?php
  4. if (true) {
  5. function A() {}
  6. }
  7. -----
  8. array(
  9. 0: Stmt_If(
  10. cond: Expr_ConstFetch(
  11. name: Name(
  12. parts: array(
  13. 0: true
  14. )
  15. )
  16. )
  17. stmts: array(
  18. 0: Stmt_Function(
  19. byRef: false
  20. name: A
  21. params: array(
  22. )
  23. returnType: null
  24. stmts: array(
  25. )
  26. )
  27. )
  28. elseifs: array(
  29. )
  30. else: null
  31. )
  32. )