array_intersect_variation3.phpt 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. --TEST--
  2. Test array_intersect() function : usage variations - different arrays for 'arr1' argument
  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. * Passing different types of arrays to $arr1 argument and testing whether
  11. * array_intersect() behaves in expected way with the other arguments passed to the function
  12. * The $arr2 argument is a fixed array.
  13. */
  14. echo "*** Testing array_intersect() : Passing different types of arrays to \$arr1 argument ***\n";
  15. /* Different heredoc strings passed as argument to $arr1 */
  16. // heredoc with blank line
  17. $blank_line = <<<EOT
  18. EOT;
  19. // heredoc with multiline string
  20. $multiline_string = <<<EOT
  21. hello world
  22. The big brown fox jumped over;
  23. the lazy dog
  24. This is a double quoted string
  25. EOT;
  26. // heredoc with different whitespaces
  27. $diff_whitespaces = <<<EOT
  28. hello\r world\t
  29. 1111\t\t != 2222\v\v
  30. heredoc\ndouble quoted string. with\vdifferent\fwhite\vspaces
  31. EOT;
  32. // heredoc with quoted strings and numeric values
  33. $numeric_string = <<<EOT
  34. 11 < 12. 123 >22
  35. 'single quoted string'
  36. "double quoted string"
  37. 2222 != 1111.\t 0000 = 0000\n
  38. EOT;
  39. // arrays to be passed to $arr1 argument
  40. $arrays = array (
  41. /*1*/ array(1, 2), // array with default keys and numeric values
  42. array(1.1, 2.2), // array with default keys & float values
  43. array(false,true), // array with default keys and boolean values
  44. array(), // empty array
  45. /*5*/ array(NULL), // array with NULL
  46. array("a\v\f","aaaa\r","b","b\tbbb","c","\[\]\!\@\#\$\%\^\&\*\(\)\{\}"), // array with double quoted strings
  47. array('a\v\f','aaaa\r','b','b\tbbb','c','\[\]\!\@\#\$\%\^\&\*\(\)\{\}'), // array with single quoted strings
  48. array($blank_line, $multiline_string, $diff_whitespaces, $numeric_string), // array with heredocs
  49. // associative arrays
  50. /*9*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
  51. array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
  52. array( 1 => 10, 2 => 20, 4 => 40, 3 => 30), // explicit numeric keys and numeric values
  53. array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value
  54. array("one" => 1, 2 => "two", 4 => "four"), //mixed
  55. // associative array, containing null/empty/boolean values as key/value
  56. /*14*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
  57. array(true => "true", false => "false", "false" => false, "true" => true),
  58. array("" => "emptyd", '' => 'emptys', "emptyd" => "", 'emptys' => ''),
  59. array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
  60. array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
  61. // array with repetative keys
  62. /*19*/ array("One" => 1, "two" => 2, "One" => 10, "two" => 20, "three" => 3)
  63. );
  64. // array to be passsed to $arr2 argument
  65. $arr2 = array (
  66. 1, 1.1, "hello", "one", NULL, 2,
  67. 'world', true, false, false => 5, 'aaaa\r', "aaaa\r",
  68. $numeric_string, $diff_whitespaces,
  69. "one" => "ten", 4 => "four", "two" => 2, 2 => "two",
  70. '', null => "null", '' => 'emptys'
  71. );
  72. // loop through each sub-array within $arrrays to check the behavior of array_intersect()
  73. $iterator = 1;
  74. foreach($arrays as $arr1) {
  75. echo "-- Iterator $iterator --\n";
  76. // Calling array_intersect() with default arguments
  77. var_dump( array_intersect($arr1, $arr2) );
  78. // Calling array_intersect() with more arguments.
  79. // additional argument passed is the same as $arr1 argument
  80. var_dump( array_intersect($arr1, $arr2, $arr1) );
  81. $iterator++;
  82. }
  83. echo "Done";
  84. ?>
  85. --EXPECTF--
  86. *** Testing array_intersect() : Passing different types of arrays to $arr1 argument ***
  87. -- Iterator 1 --
  88. array(2) {
  89. [0]=>
  90. int(1)
  91. [1]=>
  92. int(2)
  93. }
  94. array(2) {
  95. [0]=>
  96. int(1)
  97. [1]=>
  98. int(2)
  99. }
  100. -- Iterator 2 --
  101. array(1) {
  102. [0]=>
  103. float(1.1)
  104. }
  105. array(1) {
  106. [0]=>
  107. float(1.1)
  108. }
  109. -- Iterator 3 --
  110. array(2) {
  111. [0]=>
  112. bool(false)
  113. [1]=>
  114. bool(true)
  115. }
  116. array(2) {
  117. [0]=>
  118. bool(false)
  119. [1]=>
  120. bool(true)
  121. }
  122. -- Iterator 4 --
  123. array(0) {
  124. }
  125. array(0) {
  126. }
  127. -- Iterator 5 --
  128. array(1) {
  129. [0]=>
  130. NULL
  131. }
  132. array(1) {
  133. [0]=>
  134. NULL
  135. }
  136. -- Iterator 6 --
  137. array(1) {
  138. [1]=>
  139. string(5) "aaaa "
  140. }
  141. array(1) {
  142. [1]=>
  143. string(5) "aaaa "
  144. }
  145. -- Iterator 7 --
  146. array(1) {
  147. [1]=>
  148. string(6) "aaaa\r"
  149. }
  150. array(1) {
  151. [1]=>
  152. string(6) "aaaa\r"
  153. }
  154. -- Iterator 8 --
  155. array(2) {
  156. [2]=>
  157. string(88) "hello world
  158. 1111 != 2222
  159. heredoc
  160. double quoted string. with different white spaces"
  161. [3]=>
  162. string(90) "11 < 12. 123 >22
  163. 'single quoted string'
  164. "double quoted string"
  165. 2222 != 1111. 0000 = 0000
  166. "
  167. }
  168. array(2) {
  169. [2]=>
  170. string(88) "hello world
  171. 1111 != 2222
  172. heredoc
  173. double quoted string. with different white spaces"
  174. [3]=>
  175. string(90) "11 < 12. 123 >22
  176. 'single quoted string'
  177. "double quoted string"
  178. 2222 != 1111. 0000 = 0000
  179. "
  180. }
  181. -- Iterator 9 --
  182. array(2) {
  183. [1]=>
  184. string(3) "one"
  185. [2]=>
  186. string(3) "two"
  187. }
  188. array(2) {
  189. [1]=>
  190. string(3) "one"
  191. [2]=>
  192. string(3) "two"
  193. }
  194. -- Iterator 10 --
  195. array(2) {
  196. ["one"]=>
  197. int(1)
  198. ["two"]=>
  199. int(2)
  200. }
  201. array(2) {
  202. ["one"]=>
  203. int(1)
  204. ["two"]=>
  205. int(2)
  206. }
  207. -- Iterator 11 --
  208. array(0) {
  209. }
  210. array(0) {
  211. }
  212. -- Iterator 12 --
  213. array(1) {
  214. ["one"]=>
  215. string(3) "ten"
  216. }
  217. array(1) {
  218. ["one"]=>
  219. string(3) "ten"
  220. }
  221. -- Iterator 13 --
  222. array(3) {
  223. ["one"]=>
  224. int(1)
  225. [2]=>
  226. string(3) "two"
  227. [4]=>
  228. string(4) "four"
  229. }
  230. array(3) {
  231. ["one"]=>
  232. int(1)
  233. [2]=>
  234. string(3) "two"
  235. [4]=>
  236. string(4) "four"
  237. }
  238. -- Iterator 14 --
  239. array(2) {
  240. ["NULL"]=>
  241. NULL
  242. ["null"]=>
  243. NULL
  244. }
  245. array(2) {
  246. ["NULL"]=>
  247. NULL
  248. ["null"]=>
  249. NULL
  250. }
  251. -- Iterator 15 --
  252. array(2) {
  253. ["false"]=>
  254. bool(false)
  255. ["true"]=>
  256. bool(true)
  257. }
  258. array(2) {
  259. ["false"]=>
  260. bool(false)
  261. ["true"]=>
  262. bool(true)
  263. }
  264. -- Iterator 16 --
  265. array(3) {
  266. [""]=>
  267. string(6) "emptys"
  268. ["emptyd"]=>
  269. string(0) ""
  270. ["emptys"]=>
  271. string(0) ""
  272. }
  273. array(3) {
  274. [""]=>
  275. string(6) "emptys"
  276. ["emptyd"]=>
  277. string(0) ""
  278. ["emptys"]=>
  279. string(0) ""
  280. }
  281. -- Iterator 17 --
  282. array(6) {
  283. [1]=>
  284. string(0) ""
  285. [2]=>
  286. string(0) ""
  287. [3]=>
  288. NULL
  289. [4]=>
  290. NULL
  291. [5]=>
  292. bool(false)
  293. [6]=>
  294. bool(true)
  295. }
  296. array(6) {
  297. [1]=>
  298. string(0) ""
  299. [2]=>
  300. string(0) ""
  301. [3]=>
  302. NULL
  303. [4]=>
  304. NULL
  305. [5]=>
  306. bool(false)
  307. [6]=>
  308. bool(true)
  309. }
  310. -- Iterator 18 --
  311. array(1) {
  312. [0]=>
  313. int(5)
  314. }
  315. array(1) {
  316. [0]=>
  317. int(5)
  318. }
  319. -- Iterator 19 --
  320. array(0) {
  321. }
  322. array(0) {
  323. }
  324. Done