array_unshift_basic2.phpt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. --TEST--
  2. Test array_unshift() function : basic functionality - associative arrays for 'array' argument
  3. --FILE--
  4. <?php
  5. /* Prototype : int array_unshift(array $array, mixed $var [, mixed ...])
  6. * Description: Pushes elements onto the beginning of the array
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Testing array_unshift() by giving associative arrays for $array argument
  11. */
  12. echo "*** Testing array_unshift() : basic functionality with associative array ***\n";
  13. // Initialise the array
  14. $array = array('f' => "first", "s" => 'second', 1 => "one", 2 => 'two');
  15. // Calling array_unshift() with default argument
  16. $temp_array = $array;
  17. // returns element count in the resulting array after arguments are pushed to
  18. // beginning of the given array
  19. var_dump( array_unshift($temp_array, 10) );
  20. // dump the resulting array
  21. var_dump($temp_array);
  22. // Calling array_unshift() with optional arguments
  23. $temp_array = $array;
  24. // returns element count in the resulting array after arguments are pushed to
  25. // beginning of the given array
  26. var_dump( array_unshift($temp_array, 222, "hello", 12.33) );
  27. // dump the resulting array
  28. var_dump($temp_array);
  29. echo "Done";
  30. ?>
  31. --EXPECTF--
  32. *** Testing array_unshift() : basic functionality with associative array ***
  33. int(5)
  34. array(5) {
  35. [0]=>
  36. int(10)
  37. ["f"]=>
  38. string(5) "first"
  39. ["s"]=>
  40. string(6) "second"
  41. [1]=>
  42. string(3) "one"
  43. [2]=>
  44. string(3) "two"
  45. }
  46. int(7)
  47. array(7) {
  48. [0]=>
  49. int(222)
  50. [1]=>
  51. string(5) "hello"
  52. [2]=>
  53. float(12.33)
  54. ["f"]=>
  55. string(5) "first"
  56. ["s"]=>
  57. string(6) "second"
  58. [3]=>
  59. string(3) "one"
  60. [4]=>
  61. string(3) "two"
  62. }
  63. Done