byRef.test 638 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Return and pass by ref
  2. -----
  3. <?php
  4. function a(&$b) {}
  5. function &a($b) {}
  6. -----
  7. array(
  8. 0: Stmt_Function(
  9. byRef: false
  10. params: array(
  11. 0: Param(
  12. name: b
  13. default: null
  14. type: null
  15. byRef: true
  16. )
  17. )
  18. stmts: array(
  19. )
  20. name: a
  21. )
  22. 1: Stmt_Function(
  23. byRef: true
  24. params: array(
  25. 0: Param(
  26. name: b
  27. default: null
  28. type: null
  29. byRef: false
  30. )
  31. )
  32. stmts: array(
  33. )
  34. name: a
  35. )
  36. )