ref_range_2.phpt 300 B

12345678910111213141516171819202122232425
  1. --TEST--
  2. Range info for references (2)
  3. --FILE--
  4. <?php
  5. function test() {
  6. escape_x($x);
  7. $x = 0;
  8. modify_x();
  9. return PHP_INT_MAX + (int) $x;
  10. }
  11. function escape_x(&$x) {
  12. $GLOBALS['x'] =& $x;
  13. }
  14. function modify_x() {
  15. $GLOBALS['x']++;
  16. }
  17. var_dump(test());
  18. ?>
  19. --EXPECTF--
  20. float(%s)