array_shift_basic.phpt 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --TEST--
  2. Test array_shift() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : mixed array_shift(array &$stack)
  6. * Description: Pops an element off the beginning of the array
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Test basic functionality of array_shift()
  11. */
  12. echo "*** Testing array_shift() : basic functionality ***\n";
  13. $array = array('zero', 'one', '3' => 'three', 'four' => 4);
  14. echo "\n-- Before shift: --\n";
  15. var_dump($array);
  16. echo "\n-- After shift: --\n";
  17. echo "Returned value:\t";
  18. var_dump(array_shift($array));
  19. echo "New array:\n";
  20. var_dump($array);
  21. echo "Done";
  22. ?>
  23. --EXPECTF--
  24. *** Testing array_shift() : basic functionality ***
  25. -- Before shift: --
  26. array(4) {
  27. [0]=>
  28. string(4) "zero"
  29. [1]=>
  30. string(3) "one"
  31. [3]=>
  32. string(5) "three"
  33. ["four"]=>
  34. int(4)
  35. }
  36. -- After shift: --
  37. Returned value: string(4) "zero"
  38. New array:
  39. array(3) {
  40. [0]=>
  41. string(3) "one"
  42. [1]=>
  43. string(5) "three"
  44. ["four"]=>
  45. int(4)
  46. }
  47. Done