array_push.phpt 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. --TEST--
  2. Test array_push() function
  3. --FILE--
  4. <?php
  5. /* Prototype: int array_push( array &array );
  6. * Description: Push one or more elements onto the end of array
  7. and returns the new number of elements in the array.
  8. */
  9. $empty_array = array();
  10. $number = 5;
  11. $str = "abc";
  12. /* Various combinations of arrays to be used for the test */
  13. $mixed_array = array(
  14. array(),
  15. array( 1,2,3,4,5,6,7,8,9 ),
  16. array( "One", "_Two", "Three", "Four", "Five" ),
  17. array( 6, "six", 7, "seven", 8, "eight", 9, "nine" ),
  18. array( "a" => "aaa", "A" => "AAA", "c" => "ccc", "d" => "ddd", "e" => "eee" ),
  19. array( "1" => "one", "2" => "two", "3" => "three", "4" => "four", "5" => "five" ),
  20. array( 1 => "one", 2 => "two", 3 => 7, 4 => "four", 5 => "five" ),
  21. array( "f" => "fff", "1" => "one", 4 => 6, "" => "blank", 2.4 => "float", "F" => "FFF",
  22. "blank" => "", 3.7 => 3.7, 5.4 => 7, 6 => 8.6, '5' => "Five", "4name" => "jonny", "a" => NULL, NULL => 3 ),
  23. array( 12, "name", 'age', '45' ),
  24. array( array("oNe", "tWo", 4), array(10, 20, 30, 40, 50), array() ),
  25. array( "one" => 1, "one" => 2, "three" => 3, 3, 4, 3 => 33, 4 => 44, 5, 6,
  26. 5.4 => 54, 5.7 => 57, "5.4" => 554, "5.7" => 557 )
  27. );
  28. /* Error Conditions */
  29. echo "\n*** Testing Error Conditions ***\n";
  30. /* Zero argument */
  31. var_dump( array_push() );
  32. /* Scalar argument */
  33. var_dump( array_push($number, 22) );
  34. /* String argument */
  35. var_dump( array_push($str, 22) );
  36. /* Invalid Number of arguments */
  37. var_dump( array_push($mixed_array[1],1,2) );
  38. /* Empty Array as argument */
  39. var_dump( array_push($empty_array, 2) );
  40. /* Loop to test normal functionality with different arrays inputs */
  41. echo "\n*** Testing with various array inputs ***\n";
  42. $counter = 1;
  43. foreach( $mixed_array as $sub_array )
  44. {
  45. echo "\n-- Input Array for Iteration $counter is --\n";
  46. print_r( $sub_array );
  47. echo "\nOutput after push is :\n";
  48. var_dump( array_push($sub_array, 22, "abc") );
  49. $counter++;
  50. }
  51. /* Checking for return value and the new array formed from push operation */
  52. echo "\n*** Checking for return value and the new array formed from push operation ***\n";
  53. var_dump( array_push($mixed_array[2], 22, 33, "44") );
  54. var_dump( $mixed_array[2] );
  55. echo"\nDone";
  56. ?>
  57. --EXPECTF--
  58. *** Testing Error Conditions ***
  59. Warning: array_push() expects at least 2 parameters, 0 given in %s on line %d
  60. NULL
  61. Warning: array_push() expects parameter 1 to be array, integer given in %s on line %d
  62. NULL
  63. Warning: array_push() expects parameter 1 to be array, string given in %s on line %d
  64. NULL
  65. int(11)
  66. int(1)
  67. *** Testing with various array inputs ***
  68. -- Input Array for Iteration 1 is --
  69. Array
  70. (
  71. )
  72. Output after push is :
  73. int(2)
  74. -- Input Array for Iteration 2 is --
  75. Array
  76. (
  77. [0] => 1
  78. [1] => 2
  79. [2] => 3
  80. [3] => 4
  81. [4] => 5
  82. [5] => 6
  83. [6] => 7
  84. [7] => 8
  85. [8] => 9
  86. [9] => 1
  87. [10] => 2
  88. )
  89. Output after push is :
  90. int(13)
  91. -- Input Array for Iteration 3 is --
  92. Array
  93. (
  94. [0] => One
  95. [1] => _Two
  96. [2] => Three
  97. [3] => Four
  98. [4] => Five
  99. )
  100. Output after push is :
  101. int(7)
  102. -- Input Array for Iteration 4 is --
  103. Array
  104. (
  105. [0] => 6
  106. [1] => six
  107. [2] => 7
  108. [3] => seven
  109. [4] => 8
  110. [5] => eight
  111. [6] => 9
  112. [7] => nine
  113. )
  114. Output after push is :
  115. int(10)
  116. -- Input Array for Iteration 5 is --
  117. Array
  118. (
  119. [a] => aaa
  120. [A] => AAA
  121. [c] => ccc
  122. [d] => ddd
  123. [e] => eee
  124. )
  125. Output after push is :
  126. int(7)
  127. -- Input Array for Iteration 6 is --
  128. Array
  129. (
  130. [1] => one
  131. [2] => two
  132. [3] => three
  133. [4] => four
  134. [5] => five
  135. )
  136. Output after push is :
  137. int(7)
  138. -- Input Array for Iteration 7 is --
  139. Array
  140. (
  141. [1] => one
  142. [2] => two
  143. [3] => 7
  144. [4] => four
  145. [5] => five
  146. )
  147. Output after push is :
  148. int(7)
  149. -- Input Array for Iteration 8 is --
  150. Array
  151. (
  152. [f] => fff
  153. [1] => one
  154. [4] => 6
  155. [] => 3
  156. [2] => float
  157. [F] => FFF
  158. [blank] =>
  159. [3] => 3.7
  160. [5] => Five
  161. [6] => 8.6
  162. [4name] => jonny
  163. [a] =>
  164. )
  165. Output after push is :
  166. int(14)
  167. -- Input Array for Iteration 9 is --
  168. Array
  169. (
  170. [0] => 12
  171. [1] => name
  172. [2] => age
  173. [3] => 45
  174. )
  175. Output after push is :
  176. int(6)
  177. -- Input Array for Iteration 10 is --
  178. Array
  179. (
  180. [0] => Array
  181. (
  182. [0] => oNe
  183. [1] => tWo
  184. [2] => 4
  185. )
  186. [1] => Array
  187. (
  188. [0] => 10
  189. [1] => 20
  190. [2] => 30
  191. [3] => 40
  192. [4] => 50
  193. )
  194. [2] => Array
  195. (
  196. )
  197. )
  198. Output after push is :
  199. int(5)
  200. -- Input Array for Iteration 11 is --
  201. Array
  202. (
  203. [one] => 2
  204. [three] => 3
  205. [0] => 3
  206. [1] => 4
  207. [3] => 33
  208. [4] => 44
  209. [5] => 57
  210. [6] => 6
  211. [5.4] => 554
  212. [5.7] => 557
  213. )
  214. Output after push is :
  215. int(12)
  216. *** Checking for return value and the new array formed from push operation ***
  217. int(8)
  218. array(8) {
  219. [0]=>
  220. string(3) "One"
  221. [1]=>
  222. string(4) "_Two"
  223. [2]=>
  224. string(5) "Three"
  225. [3]=>
  226. string(4) "Four"
  227. [4]=>
  228. string(4) "Five"
  229. [5]=>
  230. int(22)
  231. [6]=>
  232. int(33)
  233. [7]=>
  234. string(2) "44"
  235. }
  236. Done