prev_error3.phpt 427 B

12345678910111213141516171819
  1. --TEST--
  2. prev - ensure we cannot pass a temporary
  3. --FILE--
  4. <?php
  5. /* Prototype : mixed prev(array $array_arg)
  6. * Description: Move array argument's internal pointer to the previous element and return it
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Pass temporary variables to prev() to test behaviour
  11. */
  12. var_dump(prev(array(1, 2)));
  13. ?>
  14. --EXPECTF--
  15. Fatal error: Only variables can be passed by reference in %s on line %d