forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharray_walk_basic2.phpt
88 lines (69 loc) · 1.98 KB
/
array_walk_basic2.phpt
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
--TEST--
Test array_walk() function : basic functionality - associative array
--FILE--
<?php
echo "*** Testing array_walk() : basic functionality ***\n";
// associative array
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
function test_alter(&$item, $key, $prefix)
{
// dump the arguments to check that they are passed
// with proper type
var_dump($item); // value
var_dump($key); // key
var_dump($prefix); // additional argument passed to callback function
echo "\n"; // new line to separate the output between each element
}
function test_print($item, $key)
{
// dump the arguments to check that they are passed
// with proper type
var_dump($item); // value
var_dump($key); // key
echo "\n"; // new line to separate the output between each element
}
echo "-- Using array_walk with default parameters to show array contents --\n";
var_dump(array_walk($fruits, 'test_print'));
echo "-- Using array_walk with one optional parameter to modify contents --\n";
var_dump (array_walk($fruits, 'test_alter', 'fruit'));
echo "-- Using array_walk with default parameters to show modified array contents --\n";
var_dump (array_walk($fruits, 'test_print'));
echo "Done";
?>
--EXPECT--
*** Testing array_walk() : basic functionality ***
-- Using array_walk with default parameters to show array contents --
string(5) "lemon"
string(1) "d"
string(6) "orange"
string(1) "a"
string(6) "banana"
string(1) "b"
string(5) "apple"
string(1) "c"
bool(true)
-- Using array_walk with one optional parameter to modify contents --
string(5) "lemon"
string(1) "d"
string(5) "fruit"
string(6) "orange"
string(1) "a"
string(5) "fruit"
string(6) "banana"
string(1) "b"
string(5) "fruit"
string(5) "apple"
string(1) "c"
string(5) "fruit"
bool(true)
-- Using array_walk with default parameters to show modified array contents --
string(5) "lemon"
string(1) "d"
string(6) "orange"
string(1) "a"
string(6) "banana"
string(1) "b"
string(5) "apple"
string(1) "c"
bool(true)
Done