conditional.test 549 B

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