array_fill_variation1.phpt 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. --TEST--
  2. Test array_fill() function : usage variations - unexpected values for 'start_key' argument
  3. --SKIPIF--
  4. <?php
  5. if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : proto array array_fill(int start_key, int num, mixed val)
  10. * Description: Create an array containing num elements starting with index start_key each initialized to val
  11. * Source code: ext/standard/array.c
  12. */
  13. /*
  14. * testing array_fill() by passing different unexpected value for 'start_key' argument
  15. */
  16. echo "*** Testing array_fill() : usage variations ***\n";
  17. // Initialise function arguments not being substituted
  18. $num = 2;
  19. $val = 100;
  20. //get an unset variable
  21. $unset_var = 10;
  22. unset ($unset_var);
  23. //get a resource variable
  24. $fp = fopen(__FILE__, "r");
  25. //define a class
  26. class test
  27. {
  28. var $t = 10;
  29. function __toString()
  30. {
  31. return "testObject";
  32. }
  33. }
  34. //array of different values for 'start_key' argument
  35. $values = array(
  36. // float values
  37. /* 1 */ 10.5,
  38. -10.5,
  39. 12.3456789000e10,
  40. 12.34567890006E-10,
  41. .5,
  42. // array values
  43. /* 6 */ array(),
  44. array(0),
  45. array(1),
  46. array(1, 2),
  47. array('color' => 'red', 'item' => 'pen'),
  48. // null values
  49. /* 11 */ NULL,
  50. null,
  51. // boolean values
  52. /* 13 */ true,
  53. false,
  54. TRUE,
  55. FALSE,
  56. // empty string
  57. /* 17 */ "",
  58. '',
  59. // string values
  60. /* 19 */ "string",
  61. 'string',
  62. // objects
  63. /* 21 */ new test(),
  64. // undefined variable
  65. @$undefined_var,
  66. // unset variable
  67. @$unset_var,
  68. // resource variable
  69. /* 24 */ $fp
  70. );
  71. // loop through each element of the array for start_key
  72. // check the working of array_fill()
  73. echo "--- Testing array_fill() with different values for 'start_key' arg ---\n";
  74. $counter = 1;
  75. for($index = 0; $index < count($values); $index ++)
  76. {
  77. echo "-- Iteration $counter --\n";
  78. $start_key = $values[$index];
  79. var_dump( array_fill($start_key,$num,$val) );
  80. $counter ++;
  81. }
  82. // close the resource used
  83. fclose($fp);
  84. echo "Done";
  85. ?>
  86. --EXPECTF--
  87. *** Testing array_fill() : usage variations ***
  88. --- Testing array_fill() with different values for 'start_key' arg ---
  89. -- Iteration 1 --
  90. array(2) {
  91. [10]=>
  92. int(100)
  93. [11]=>
  94. int(100)
  95. }
  96. -- Iteration 2 --
  97. array(2) {
  98. [-10]=>
  99. int(100)
  100. [0]=>
  101. int(100)
  102. }
  103. -- Iteration 3 --
  104. array(2) {
  105. [-1097262584]=>
  106. int(100)
  107. [0]=>
  108. int(100)
  109. }
  110. -- Iteration 4 --
  111. array(2) {
  112. [0]=>
  113. int(100)
  114. [1]=>
  115. int(100)
  116. }
  117. -- Iteration 5 --
  118. array(2) {
  119. [0]=>
  120. int(100)
  121. [1]=>
  122. int(100)
  123. }
  124. -- Iteration 6 --
  125. Warning: array_fill() expects parameter 1 to be long, array given in %sarray_fill_variation1.php on line %d
  126. NULL
  127. -- Iteration 7 --
  128. Warning: array_fill() expects parameter 1 to be long, array given in %sarray_fill_variation1.php on line %d
  129. NULL
  130. -- Iteration 8 --
  131. Warning: array_fill() expects parameter 1 to be long, array given in %sarray_fill_variation1.php on line %d
  132. NULL
  133. -- Iteration 9 --
  134. Warning: array_fill() expects parameter 1 to be long, array given in %sarray_fill_variation1.php on line %d
  135. NULL
  136. -- Iteration 10 --
  137. Warning: array_fill() expects parameter 1 to be long, array given in %sarray_fill_variation1.php on line %d
  138. NULL
  139. -- Iteration 11 --
  140. array(2) {
  141. [0]=>
  142. int(100)
  143. [1]=>
  144. int(100)
  145. }
  146. -- Iteration 12 --
  147. array(2) {
  148. [0]=>
  149. int(100)
  150. [1]=>
  151. int(100)
  152. }
  153. -- Iteration 13 --
  154. array(2) {
  155. [1]=>
  156. int(100)
  157. [2]=>
  158. int(100)
  159. }
  160. -- Iteration 14 --
  161. array(2) {
  162. [0]=>
  163. int(100)
  164. [1]=>
  165. int(100)
  166. }
  167. -- Iteration 15 --
  168. array(2) {
  169. [1]=>
  170. int(100)
  171. [2]=>
  172. int(100)
  173. }
  174. -- Iteration 16 --
  175. array(2) {
  176. [0]=>
  177. int(100)
  178. [1]=>
  179. int(100)
  180. }
  181. -- Iteration 17 --
  182. Warning: array_fill() expects parameter 1 to be long, string given in %sarray_fill_variation1.php on line %d
  183. NULL
  184. -- Iteration 18 --
  185. Warning: array_fill() expects parameter 1 to be long, string given in %sarray_fill_variation1.php on line %d
  186. NULL
  187. -- Iteration 19 --
  188. Warning: array_fill() expects parameter 1 to be long, string given in %sarray_fill_variation1.php on line %d
  189. NULL
  190. -- Iteration 20 --
  191. Warning: array_fill() expects parameter 1 to be long, string given in %sarray_fill_variation1.php on line %d
  192. NULL
  193. -- Iteration 21 --
  194. Warning: array_fill() expects parameter 1 to be long, object given in %sarray_fill_variation1.php on line %d
  195. NULL
  196. -- Iteration 22 --
  197. array(2) {
  198. [0]=>
  199. int(100)
  200. [1]=>
  201. int(100)
  202. }
  203. -- Iteration 23 --
  204. array(2) {
  205. [0]=>
  206. int(100)
  207. [1]=>
  208. int(100)
  209. }
  210. -- Iteration 24 --
  211. Warning: array_fill() expects parameter 1 to be long, resource given in %sarray_fill_variation1.php on line %d
  212. NULL
  213. Done