array_column_basic.phpt 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. --TEST--
  2. Test array_column() function: basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype:
  6. * array array_column(array $input, mixed $column_key[, mixed $index_key]);
  7. * Description:
  8. * Returns an array containing all the values from
  9. * the specified "column" in a two-dimensional array.
  10. */
  11. echo "*** Testing array_column() : basic functionality ***\n";
  12. /* Array representing a possible record set returned from a database */
  13. $records = array(
  14. array(
  15. 'id' => 1,
  16. 'first_name' => 'John',
  17. 'last_name' => 'Doe'
  18. ),
  19. array(
  20. 'id' => 2,
  21. 'first_name' => 'Sally',
  22. 'last_name' => 'Smith'
  23. ),
  24. array(
  25. 'id' => 3,
  26. 'first_name' => 'Jane',
  27. 'last_name' => 'Jones'
  28. )
  29. );
  30. echo "-- first_name column from recordset --\n";
  31. var_dump(array_column($records, 'first_name'));
  32. echo "-- id column from recordset --\n";
  33. var_dump(array_column($records, 'id'));
  34. echo "-- last_name column from recordset, keyed by value from id column --\n";
  35. var_dump(array_column($records, 'last_name', 'id'));
  36. echo "-- last_name column from recordset, keyed by value from first_name column --\n";
  37. var_dump(array_column($records, 'last_name', 'first_name'));
  38. echo "\n*** Testing multiple data types ***\n";
  39. $fh = fopen(__FILE__, 'r', true);
  40. $values = array(
  41. array(
  42. 'id' => 1,
  43. 'value' => new stdClass
  44. ),
  45. array(
  46. 'id' => 2,
  47. 'value' => 34.2345
  48. ),
  49. array(
  50. 'id' => 3,
  51. 'value' => true
  52. ),
  53. array(
  54. 'id' => 4,
  55. 'value' => false
  56. ),
  57. array(
  58. 'id' => 5,
  59. 'value' => null
  60. ),
  61. array(
  62. 'id' => 6,
  63. 'value' => 1234
  64. ),
  65. array(
  66. 'id' => 7,
  67. 'value' => 'Foo'
  68. ),
  69. array(
  70. 'id' => 8,
  71. 'value' => $fh
  72. )
  73. );
  74. var_dump(array_column($values, 'value'));
  75. var_dump(array_column($values, 'value', 'id'));
  76. echo "\n*** Testing numeric column keys ***\n";
  77. $numericCols = array(
  78. array('aaa', '111'),
  79. array('bbb', '222'),
  80. array('ccc', '333', -1 => 'ddd')
  81. );
  82. var_dump(array_column($numericCols, 1));
  83. var_dump(array_column($numericCols, 1, 0));
  84. var_dump(array_column($numericCols, 1, 0.123));
  85. var_dump(array_column($numericCols, 1, -1));
  86. echo "\n*** Testing failure to find specified column ***\n";
  87. var_dump(array_column($numericCols, 2));
  88. var_dump(array_column($numericCols, 'foo'));
  89. var_dump(array_column($numericCols, 0, 'foo'));
  90. var_dump(array_column($numericCols, 3.14));
  91. echo "\n*** Testing single dimensional array ***\n";
  92. $singleDimension = array('foo', 'bar', 'baz');
  93. var_dump(array_column($singleDimension, 1));
  94. echo "\n*** Testing columns not present in all rows ***\n";
  95. $mismatchedColumns = array(
  96. array('a' => 'foo', 'b' => 'bar', 'e' => 'bbb'),
  97. array('a' => 'baz', 'c' => 'qux', 'd' => 'aaa'),
  98. array('a' => 'eee', 'b' => 'fff', 'e' => 'ggg'),
  99. );
  100. var_dump(array_column($mismatchedColumns, 'c'));
  101. var_dump(array_column($mismatchedColumns, 'c', 'a'));
  102. var_dump(array_column($mismatchedColumns, 'a', 'd'));
  103. var_dump(array_column($mismatchedColumns, 'a', 'e'));
  104. var_dump(array_column($mismatchedColumns, 'b'));
  105. var_dump(array_column($mismatchedColumns, 'b', 'a'));
  106. echo "\n*** Testing use of object converted to string ***\n";
  107. class Foo
  108. {
  109. public function __toString()
  110. {
  111. return 'last_name';
  112. }
  113. }
  114. class Bar
  115. {
  116. public function __toString()
  117. {
  118. return 'first_name';
  119. }
  120. }
  121. $f = new Foo();
  122. $b = new Bar();
  123. var_dump(array_column($records, $f));
  124. var_dump(array_column($records, $f, $b));
  125. echo "Done\n";
  126. ?>
  127. --EXPECTF--
  128. *** Testing array_column() : basic functionality ***
  129. -- first_name column from recordset --
  130. array(3) {
  131. [0]=>
  132. string(4) "John"
  133. [1]=>
  134. string(5) "Sally"
  135. [2]=>
  136. string(4) "Jane"
  137. }
  138. -- id column from recordset --
  139. array(3) {
  140. [0]=>
  141. int(1)
  142. [1]=>
  143. int(2)
  144. [2]=>
  145. int(3)
  146. }
  147. -- last_name column from recordset, keyed by value from id column --
  148. array(3) {
  149. [1]=>
  150. string(3) "Doe"
  151. [2]=>
  152. string(5) "Smith"
  153. [3]=>
  154. string(5) "Jones"
  155. }
  156. -- last_name column from recordset, keyed by value from first_name column --
  157. array(3) {
  158. ["John"]=>
  159. string(3) "Doe"
  160. ["Sally"]=>
  161. string(5) "Smith"
  162. ["Jane"]=>
  163. string(5) "Jones"
  164. }
  165. *** Testing multiple data types ***
  166. array(8) {
  167. [0]=>
  168. object(stdClass)#%d (0) {
  169. }
  170. [1]=>
  171. float(34.2345)
  172. [2]=>
  173. bool(true)
  174. [3]=>
  175. bool(false)
  176. [4]=>
  177. NULL
  178. [5]=>
  179. int(1234)
  180. [6]=>
  181. string(3) "Foo"
  182. [7]=>
  183. resource(%d) of type (stream)
  184. }
  185. array(8) {
  186. [1]=>
  187. object(stdClass)#%d (0) {
  188. }
  189. [2]=>
  190. float(34.2345)
  191. [3]=>
  192. bool(true)
  193. [4]=>
  194. bool(false)
  195. [5]=>
  196. NULL
  197. [6]=>
  198. int(1234)
  199. [7]=>
  200. string(3) "Foo"
  201. [8]=>
  202. resource(%d) of type (stream)
  203. }
  204. *** Testing numeric column keys ***
  205. array(3) {
  206. [0]=>
  207. string(3) "111"
  208. [1]=>
  209. string(3) "222"
  210. [2]=>
  211. string(3) "333"
  212. }
  213. array(3) {
  214. ["aaa"]=>
  215. string(3) "111"
  216. ["bbb"]=>
  217. string(3) "222"
  218. ["ccc"]=>
  219. string(3) "333"
  220. }
  221. array(3) {
  222. ["aaa"]=>
  223. string(3) "111"
  224. ["bbb"]=>
  225. string(3) "222"
  226. ["ccc"]=>
  227. string(3) "333"
  228. }
  229. array(3) {
  230. [0]=>
  231. string(3) "111"
  232. [1]=>
  233. string(3) "222"
  234. ["ddd"]=>
  235. string(3) "333"
  236. }
  237. *** Testing failure to find specified column ***
  238. array(0) {
  239. }
  240. array(0) {
  241. }
  242. array(3) {
  243. [0]=>
  244. string(3) "aaa"
  245. [1]=>
  246. string(3) "bbb"
  247. [2]=>
  248. string(3) "ccc"
  249. }
  250. array(0) {
  251. }
  252. *** Testing single dimensional array ***
  253. array(0) {
  254. }
  255. *** Testing columns not present in all rows ***
  256. array(1) {
  257. [0]=>
  258. string(3) "qux"
  259. }
  260. array(1) {
  261. ["baz"]=>
  262. string(3) "qux"
  263. }
  264. array(3) {
  265. [0]=>
  266. string(3) "foo"
  267. ["aaa"]=>
  268. string(3) "baz"
  269. [1]=>
  270. string(3) "eee"
  271. }
  272. array(3) {
  273. ["bbb"]=>
  274. string(3) "foo"
  275. [0]=>
  276. string(3) "baz"
  277. ["ggg"]=>
  278. string(3) "eee"
  279. }
  280. array(2) {
  281. [0]=>
  282. string(3) "bar"
  283. [1]=>
  284. string(3) "fff"
  285. }
  286. array(2) {
  287. ["foo"]=>
  288. string(3) "bar"
  289. ["eee"]=>
  290. string(3) "fff"
  291. }
  292. *** Testing use of object converted to string ***
  293. array(3) {
  294. [0]=>
  295. string(3) "Doe"
  296. [1]=>
  297. string(5) "Smith"
  298. [2]=>
  299. string(5) "Jones"
  300. }
  301. array(3) {
  302. ["John"]=>
  303. string(3) "Doe"
  304. ["Sally"]=>
  305. string(5) "Smith"
  306. ["Jane"]=>
  307. string(5) "Jones"
  308. }
  309. Done