shuffle_basic1.phpt 3.0 KB

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