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