shuffle_basic2.phpt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. --TEST--
  2. Test shuffle() function : basic functionality - with associative array
  3. --FILE--
  4. <?php
  5. /* Prototype : bool shuffle(array $array_arg)
  6. * Description: Randomly shuffle the contents of an array
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Test behaviour of shuffle when an associative array is
  11. * passed to the 'array_arg' argument and check for the
  12. * changes in the input array by printing the input array
  13. * before and after shuffle() function is applied on it
  14. */
  15. echo "*** Testing shuffle() : with associative array ***\n";
  16. // Initialise the associative array
  17. $array_arg = array(
  18. 'one' => 1, 2 => 02, 'three' => 3,
  19. 4 => 4, '#5' => 5, 'SIX' => 6,
  20. "seven" => 0x7, "#8" => 012, "nine" => 9
  21. );
  22. // printing the input array before the shuffle operation
  23. echo "\n-- input array before shuffle() function is applied --\n";
  24. var_dump( $array_arg );
  25. // applying shuffle() function on the input array
  26. echo "\n-- return value from shuffle() function --\n";
  27. var_dump( shuffle($array_arg) ); // prints the return value from shuffle() function
  28. echo "\n-- resultant array after shuffle() function is applied --\n";
  29. var_dump( $array_arg );
  30. echo "Done";
  31. ?>
  32. --EXPECTF--
  33. *** Testing shuffle() : with associative array ***
  34. -- input array before shuffle() function is applied --
  35. array(9) {
  36. ["one"]=>
  37. int(1)
  38. [2]=>
  39. int(2)
  40. ["three"]=>
  41. int(3)
  42. [4]=>
  43. int(4)
  44. ["#5"]=>
  45. int(5)
  46. ["SIX"]=>
  47. int(6)
  48. ["seven"]=>
  49. int(7)
  50. ["#8"]=>
  51. int(10)
  52. ["nine"]=>
  53. int(9)
  54. }
  55. -- return value from shuffle() function --
  56. bool(true)
  57. -- resultant array after shuffle() function is applied --
  58. array(9) {
  59. [0]=>
  60. int(%d)
  61. [1]=>
  62. int(%d)
  63. [2]=>
  64. int(%d)
  65. [3]=>
  66. int(%d)
  67. [4]=>
  68. int(%d)
  69. [5]=>
  70. int(%d)
  71. [6]=>
  72. int(%d)
  73. [7]=>
  74. int(%d)
  75. [8]=>
  76. int(%d)
  77. }
  78. Done