TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

91 lines
2.2 KiB

--TEST--
Test array_walk_recursive() function : basic functionality - associative array
--FILE--
<?php
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
}
function main()
{
echo "*** Testing array_walk_recursive() : basic functionality ***\n";
// associative array
$fruits = array("a" => "lemon", "b" => array("c" => "orange", "d" => "banana"), "e" => array("f" => "apple"));
echo "-- Using array_walk_recursive with default parameters to show array contents --\n";
var_dump(array_walk_recursive($fruits, 'test_print'));
echo "-- Using array_walk_recursive with one optional parameter to modify contents --\n";
var_dump(array_walk_recursive($fruits, 'test_alter', 'fruit'));
echo "-- Using array_walk_recursive with default parameters to show modified array contents --\n";
var_dump(array_walk_recursive($fruits, 'test_print'));
echo "Done";
}
?>
--EXPECT--
*** Testing array_walk_recursive() : basic functionality ***
-- Using array_walk_recursive with default parameters to show array contents --
string(5) "lemon"
string(1) "a"
string(6) "orange"
string(1) "c"
string(6) "banana"
string(1) "d"
string(5) "apple"
string(1) "f"
bool(true)
-- Using array_walk_recursive with one optional parameter to modify contents --
string(5) "lemon"
string(1) "a"
string(5) "fruit"
string(6) "orange"
string(1) "c"
string(5) "fruit"
string(6) "banana"
string(1) "d"
string(5) "fruit"
string(5) "apple"
string(1) "f"
string(5) "fruit"
bool(true)
-- Using array_walk_recursive with default parameters to show modified array contents --
string(5) "lemon"
string(1) "a"
string(6) "orange"
string(1) "c"
string(6) "banana"
string(1) "d"
string(5) "apple"
string(1) "f"
bool(true)
Done