array_map_variation4.phpt 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. --TEST--
  2. Test array_map() function : usage variations - associative array with different keys
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_map ( callback $callback , array $arr1 [, array $... ] )
  6. * Description: Applies the callback to the elements of the given arrays
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Test array_map() by passing associative array with different keys for $arr1 argument
  11. */
  12. echo "*** Testing array_map() : associative array with diff. keys for 'arr1' argument ***\n";
  13. function callback($a)
  14. {
  15. return ($a);
  16. }
  17. // get an unset variable
  18. $unset_var = 10;
  19. unset ($unset_var);
  20. // get a resource variable
  21. $fp = fopen(__FILE__, "r");
  22. // get a class
  23. class classA{
  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. // initializing the array
  33. $arrays = array (
  34. // empty array
  35. /*1*/ array(),
  36. // arrays with integer keys
  37. /*2*/ 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", 4.89999922839999 => "f3", 33333333.333333 => "f4"),
  43. // arrays with string keys
  44. array('\tHello' => 111, 're\td' => 'color', '\v\fworld' => 2.2, 'pen\n' => 33),
  45. /*8*/ array("\tHello" => 111, "re\td" => "color", "\v\fworld" => 2.2, "pen\n" => 33),
  46. array("hello", $heredoc => "string"), // heredoc
  47. // array with object, unset variable and resource variable
  48. array(new classA() => 11, @$unset_var => "hello", $fp => 'resource'),
  49. // array with mixed values
  50. /*11*/ array('hello' => 1, new classA() => 2, "fruit" => 2.2,
  51. $fp => 'resource', 133 => "int", 444.432 => "float",
  52. @$unset_var => "unset", $heredoc => "heredoc")
  53. );
  54. // loop through the various elements of $arrays to test array_map()
  55. $iterator = 1;
  56. foreach($arrays as $arr1) {
  57. echo "-- Iteration $iterator --\n";
  58. var_dump( array_map('callback', $arr1) );
  59. $iterator++;
  60. }
  61. echo "Done";
  62. ?>
  63. --EXPECTF--
  64. *** Testing array_map() : associative array with diff. keys for 'arr1' argument ***
  65. Warning: Illegal offset type in %s on line %d%d
  66. Warning: Illegal offset type in %s on line %d%d
  67. Warning: Illegal offset type in %s on line %d%d
  68. Warning: Illegal offset type in %s on line %d%d
  69. -- Iteration 1 --
  70. array(0) {
  71. }
  72. -- Iteration 2 --
  73. array(1) {
  74. [0]=>
  75. string(1) "0"
  76. }
  77. -- Iteration 3 --
  78. array(1) {
  79. [1]=>
  80. string(1) "1"
  81. }
  82. -- Iteration 4 --
  83. array(4) {
  84. [1]=>
  85. string(1) "1"
  86. [2]=>
  87. string(1) "2"
  88. [3]=>
  89. string(1) "3"
  90. [4]=>
  91. string(1) "4"
  92. }
  93. -- Iteration 5 --
  94. array(1) {
  95. [2]=>
  96. string(5) "float"
  97. }
  98. -- Iteration 6 --
  99. array(4) {
  100. [1]=>
  101. string(2) "f1"
  102. [3]=>
  103. string(2) "f2"
  104. [4]=>
  105. string(2) "f3"
  106. [33333333]=>
  107. string(2) "f4"
  108. }
  109. -- Iteration 7 --
  110. array(4) {
  111. ["\tHello"]=>
  112. int(111)
  113. ["re\td"]=>
  114. string(5) "color"
  115. ["\v\fworld"]=>
  116. float(2.2)
  117. ["pen\n"]=>
  118. int(33)
  119. }
  120. -- Iteration 8 --
  121. array(4) {
  122. [" Hello"]=>
  123. int(111)
  124. ["re d"]=>
  125. string(5) "color"
  126. [" world"]=>
  127. float(2.2)
  128. ["pen
  129. "]=>
  130. int(33)
  131. }
  132. -- Iteration 9 --
  133. array(2) {
  134. [0]=>
  135. string(5) "hello"
  136. ["Hello world"]=>
  137. string(6) "string"
  138. }
  139. -- Iteration 10 --
  140. array(1) {
  141. [""]=>
  142. string(5) "hello"
  143. }
  144. -- Iteration 11 --
  145. array(6) {
  146. ["hello"]=>
  147. int(1)
  148. ["fruit"]=>
  149. float(2.2)
  150. [133]=>
  151. string(3) "int"
  152. [444]=>
  153. string(5) "float"
  154. [""]=>
  155. string(5) "unset"
  156. ["Hello world"]=>
  157. string(7) "heredoc"
  158. }
  159. Done