array_combine_variation4.phpt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. --TEST--
  2. Test array_combine() function : usage variations - associative array with different keys(Bug#43424)
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_combine(array $keys, array $values)
  6. * Description: Creates an array by using the elements of the first parameter as keys
  7. * and the elements of the second as the corresponding values
  8. * Source code: ext/standard/array.c
  9. */
  10. /*
  11. * Testing the functionality of array_combine() by passing different
  12. * associative arrays having different possible keys to $keys argument and
  13. * associative arrays having different possible keys to $values argument.
  14. */
  15. echo "*** Testing array_combine() : assoc array with diff keys to both \$keys and \$values argument ***\n";
  16. // get an unset variable
  17. $unset_var = 10;
  18. unset ($unset_var);
  19. // get a resource variable
  20. $fp = fopen(__FILE__, "r");
  21. // get a class
  22. class classA
  23. {
  24. public function __toString(){
  25. return "Class A object";
  26. }
  27. }
  28. // get a heredoc string
  29. $heredoc = <<<EOT
  30. Hello world
  31. EOT;
  32. // different variations of associative arrays to be passed to $arr1 argument
  33. $arrays = array (
  34. // empty array
  35. /*1*/ array(),
  36. // arrays with integer keys
  37. array(0 => "0"),
  38. array(1 => "1"),
  39. array(1 => "1", 2 => "2", 3 => "3", 4 => "4"),
  40. // arrays with float keys
  41. /*5*/ array(2.3333 => "float"),
  42. array(1.2 => "f1", 3.33 => "f2",
  43. 4.89999922839999 => "f3",
  44. 33333333.333333 => "f4"),
  45. // arrays with string keys
  46. /*7*/ array('\tHello' => 111, 're\td' => "color",
  47. '\v\fworld' => 2.2, 'pen\n' => 33),
  48. array("\tHello" => 111, "re\td" => "color",
  49. "\v\fworld" => 2.2, "pen\n" => 33),
  50. array("hello", $heredoc => "string"), // heredoc
  51. // array with object, unset variable and resource variable
  52. /*10*/ array(new classA() => 11, @$unset_var => "hello", $fp => 'resource'),
  53. // array with mixed keys
  54. /*11*/ array('hello' => 1, new classA() => 2, "fruit" => 2.2,
  55. $fp => 'resource', 133 => "int", 444.432 => "float",
  56. @$unset_var => "unset", $heredoc => "heredoc")
  57. );
  58. // array to be passsed to $arr2 argument
  59. $arr2 = array(0 => 0, 2 => "float", 4 => "f3", 33333333 => "f4",
  60. "\tHello" => 111, 2.2, 'color', "Hello world" => "string",
  61. "pen\n" => 33, new classA() => 11, 133 => "int");
  62. // loop through each sub-array within $arrays to check the behavior of array_combine()
  63. // same arrays are passed to both $keys and $values
  64. $iterator = 1;
  65. foreach($arrays as $array) {
  66. echo "-- Iteration $iterator --\n";
  67. var_dump( array_combine($array, $array) );
  68. $iterator++;
  69. }
  70. // close the file resource used
  71. fclose($fp);
  72. echo "Done";
  73. ?>
  74. --EXPECTF--
  75. *** Testing array_combine() : assoc array with diff keys to both $keys and $values argument ***
  76. Warning: Illegal offset type in %s on line %d
  77. Warning: Illegal offset type in %s on line %d
  78. Warning: Illegal offset type in %s on line %d
  79. Warning: Illegal offset type in %s on line %d
  80. Warning: Illegal offset type in %s on line %d
  81. -- Iteration 1 --
  82. array(0) {
  83. }
  84. -- Iteration 2 --
  85. array(1) {
  86. [0]=>
  87. string(1) "0"
  88. }
  89. -- Iteration 3 --
  90. array(1) {
  91. [1]=>
  92. string(1) "1"
  93. }
  94. -- Iteration 4 --
  95. array(4) {
  96. [1]=>
  97. string(1) "1"
  98. [2]=>
  99. string(1) "2"
  100. [3]=>
  101. string(1) "3"
  102. [4]=>
  103. string(1) "4"
  104. }
  105. -- Iteration 5 --
  106. array(1) {
  107. ["float"]=>
  108. string(5) "float"
  109. }
  110. -- Iteration 6 --
  111. array(4) {
  112. ["f1"]=>
  113. string(2) "f1"
  114. ["f2"]=>
  115. string(2) "f2"
  116. ["f3"]=>
  117. string(2) "f3"
  118. ["f4"]=>
  119. string(2) "f4"
  120. }
  121. -- Iteration 7 --
  122. array(4) {
  123. [111]=>
  124. int(111)
  125. ["color"]=>
  126. string(5) "color"
  127. ["2.2"]=>
  128. float(2.2)
  129. [33]=>
  130. int(33)
  131. }
  132. -- Iteration 8 --
  133. array(4) {
  134. [111]=>
  135. int(111)
  136. ["color"]=>
  137. string(5) "color"
  138. ["2.2"]=>
  139. float(2.2)
  140. [33]=>
  141. int(33)
  142. }
  143. -- Iteration 9 --
  144. array(2) {
  145. ["hello"]=>
  146. string(5) "hello"
  147. ["string"]=>
  148. string(6) "string"
  149. }
  150. -- Iteration 10 --
  151. array(1) {
  152. ["hello"]=>
  153. string(5) "hello"
  154. }
  155. -- Iteration 11 --
  156. array(6) {
  157. [1]=>
  158. int(1)
  159. ["2.2"]=>
  160. float(2.2)
  161. ["int"]=>
  162. string(3) "int"
  163. ["float"]=>
  164. string(5) "float"
  165. ["unset"]=>
  166. string(5) "unset"
  167. ["heredoc"]=>
  168. string(7) "heredoc"
  169. }
  170. Done