shuffle_basic1.phpt 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. --TEST--
  2. Test shuffle() function : basic functionality - array with default keys
  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 array with default keys
  11. * is 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 arrays having default keys ***\n";
  16. // Initialise the array with integers
  17. $array_arg_int = array(0, 10, 20, 30, 40, 50, 60, 70, 80);
  18. // Initialise the array with strings
  19. $array_arg_strings = array("one", 'two', 'three', "four", "five", " ", 'six', ' ', "seven");
  20. /* Testing shuffle() function with array of integers */
  21. // printing the input array with integers before the shuffle operation
  22. echo "\n-- input array of integers before shuffle() function is applied --\n";
  23. var_dump( $array_arg_int );
  24. // applying shuffle() function on the input array of integers
  25. echo "\n-- return value from shuffle() function --\n";
  26. var_dump( shuffle($array_arg_int) ); // prints the return value from shuffle() function
  27. echo "\n-- resultant array after shuffle() function is applied --\n";
  28. var_dump( $array_arg_int );
  29. /* Testing shuffle() function with array of strings */
  30. // printing the input array with strings before the shuffle operation
  31. echo "\n-- input array of strings before shuffle() function is applied --\n";
  32. var_dump( $array_arg_strings );
  33. // applying shuffle() function on the input array of strings
  34. echo "\n-- return value from shuffle() function --\n";
  35. var_dump( shuffle($array_arg_strings) ); // prints the return value from shuffle() function
  36. echo "\n-- resultant array after shuffle() function is applied --\n";
  37. var_dump( $array_arg_strings );
  38. echo "Done";
  39. ?>
  40. --EXPECTF--
  41. *** Testing shuffle() : with arrays having default keys ***
  42. -- input array of integers before shuffle() function is applied --
  43. array(9) {
  44. [0]=>
  45. int(0)
  46. [1]=>
  47. int(10)
  48. [2]=>
  49. int(20)
  50. [3]=>
  51. int(30)
  52. [4]=>
  53. int(40)
  54. [5]=>
  55. int(50)
  56. [6]=>
  57. int(60)
  58. [7]=>
  59. int(70)
  60. [8]=>
  61. int(80)
  62. }
  63. -- return value from shuffle() function --
  64. bool(true)
  65. -- resultant array after shuffle() function is applied --
  66. array(9) {
  67. [0]=>
  68. int(%d)
  69. [1]=>
  70. int(%d)
  71. [2]=>
  72. int(%d)
  73. [3]=>
  74. int(%d)
  75. [4]=>
  76. int(%d)
  77. [5]=>
  78. int(%d)
  79. [6]=>
  80. int(%d)
  81. [7]=>
  82. int(%d)
  83. [8]=>
  84. int(%d)
  85. }
  86. -- input array of strings before shuffle() function is applied --
  87. array(9) {
  88. [0]=>
  89. string(3) "one"
  90. [1]=>
  91. string(3) "two"
  92. [2]=>
  93. string(5) "three"
  94. [3]=>
  95. string(4) "four"
  96. [4]=>
  97. string(4) "five"
  98. [5]=>
  99. string(1) " "
  100. [6]=>
  101. string(3) "six"
  102. [7]=>
  103. string(1) " "
  104. [8]=>
  105. string(5) "seven"
  106. }
  107. -- return value from shuffle() function --
  108. bool(true)
  109. -- resultant array after shuffle() function is applied --
  110. array(9) {
  111. [0]=>
  112. string(%d) "%s"
  113. [1]=>
  114. string(%d) "%s"
  115. [2]=>
  116. string(%d) "%s"
  117. [3]=>
  118. string(%d) "%s"
  119. [4]=>
  120. string(%d) "%s"
  121. [5]=>
  122. string(%d) "%s"
  123. [6]=>
  124. string(%d) "%s"
  125. [7]=>
  126. string(%d) "%s"
  127. [8]=>
  128. string(%d) "%s"
  129. }
  130. Done