array_intersect_variation9.phpt 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. --TEST--
  2. Test array_intersect() function : usage variations - two dimensional arrays for $arr1 and $arr2 arguments(Bug#43109)
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_intersect(array $arr1, array $arr2 [, array $...])
  6. * Description: Returns the entries of arr1 that have values which are present in all the other arguments
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Testing the behavior of array_intersect() by passing 2-D arrays
  11. * to both $arr1 and $arr2 argument.
  12. * Optional argument takes the same value as that of $arr1
  13. */
  14. echo "*** Testing array_intersect() : passing two dimensional array to both \$arr1 and \$arr2 arguments ***\n";
  15. // two dimensional arrays for $arr1 and $arr2 argument
  16. $arr1 = array (
  17. // arrays with default keys
  18. array(1, 2, "hello", 'world'),
  19. array(1, 2, 3, 4),
  20. // arrays with explicit keys
  21. array(1 => "one", 2 => "two", 3 => "three"),
  22. array("ten" => 10, "twenty" => 20.00, "thirty" => 30)
  23. );
  24. $arr2 = array (
  25. array(1, 2, 3, 4),
  26. array(1 => "one", 2 => "two", 3 => "three")
  27. );
  28. /* Passing the entire array as argument to $arr1 and $arr2 */
  29. // Calling array_intersect() with default arguments
  30. echo "-- Passing the entire 2-D array to \$arr1 and \$arr2 --\n";
  31. echo "- With default arguments -\n";
  32. var_dump( array_intersect($arr1, $arr2) );
  33. // Calling array_intersect() with more arguments
  34. // additional argument passed is the same as $arr1
  35. echo "- With more arguments -\n";
  36. var_dump( array_intersect($arr1, $arr2, $arr1) );
  37. /* Passing the sub-array as argument to $arr1 and $arr2 */
  38. // Calling array_intersect() with default arguments
  39. echo "-- Passing the sub-array to \$arr1 and \$arr2 --\n";
  40. echo "- With default arguments -\n";
  41. var_dump( array_intersect($arr1[0], $arr2[0]) );
  42. // Calling array_intersect() with more arguments
  43. // additional argument passed is the same as $arr1
  44. echo "- With more arguments -\n";
  45. var_dump( array_intersect($arr1[0], $arr2[0], $arr1[0]) );
  46. echo "Done";
  47. ?>
  48. --EXPECTF--
  49. *** Testing array_intersect() : passing two dimensional array to both $arr1 and $arr2 arguments ***
  50. -- Passing the entire 2-D array to $arr1 and $arr2 --
  51. - With default arguments -
  52. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  53. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  54. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  55. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  56. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  57. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  58. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  59. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  60. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  61. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  62. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  63. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  64. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  65. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  66. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  67. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  68. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  69. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  70. array(4) {
  71. [0]=>
  72. array(4) {
  73. [0]=>
  74. int(1)
  75. [1]=>
  76. int(2)
  77. [2]=>
  78. string(5) "hello"
  79. [3]=>
  80. string(5) "world"
  81. }
  82. [1]=>
  83. array(4) {
  84. [0]=>
  85. int(1)
  86. [1]=>
  87. int(2)
  88. [2]=>
  89. int(3)
  90. [3]=>
  91. int(4)
  92. }
  93. [2]=>
  94. array(3) {
  95. [1]=>
  96. string(3) "one"
  97. [2]=>
  98. string(3) "two"
  99. [3]=>
  100. string(5) "three"
  101. }
  102. [3]=>
  103. array(3) {
  104. ["ten"]=>
  105. int(10)
  106. ["twenty"]=>
  107. float(20)
  108. ["thirty"]=>
  109. int(30)
  110. }
  111. }
  112. - With more arguments -
  113. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  114. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  115. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  116. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  117. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  118. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  119. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  120. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  121. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  122. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  123. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  124. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  125. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  126. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  127. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  128. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  129. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  130. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  131. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  132. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  133. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  134. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  135. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  136. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  137. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  138. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  139. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  140. Notice: Array to string conversion in %sarray_intersect_variation9.php on line %d
  141. array(4) {
  142. [0]=>
  143. array(4) {
  144. [0]=>
  145. int(1)
  146. [1]=>
  147. int(2)
  148. [2]=>
  149. string(5) "hello"
  150. [3]=>
  151. string(5) "world"
  152. }
  153. [1]=>
  154. array(4) {
  155. [0]=>
  156. int(1)
  157. [1]=>
  158. int(2)
  159. [2]=>
  160. int(3)
  161. [3]=>
  162. int(4)
  163. }
  164. [2]=>
  165. array(3) {
  166. [1]=>
  167. string(3) "one"
  168. [2]=>
  169. string(3) "two"
  170. [3]=>
  171. string(5) "three"
  172. }
  173. [3]=>
  174. array(3) {
  175. ["ten"]=>
  176. int(10)
  177. ["twenty"]=>
  178. float(20)
  179. ["thirty"]=>
  180. int(30)
  181. }
  182. }
  183. -- Passing the sub-array to $arr1 and $arr2 --
  184. - With default arguments -
  185. array(2) {
  186. [0]=>
  187. int(1)
  188. [1]=>
  189. int(2)
  190. }
  191. - With more arguments -
  192. array(2) {
  193. [0]=>
  194. int(1)
  195. [1]=>
  196. int(2)
  197. }
  198. Done