shuffle_basic2.phpt 1.6 KB

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