我一直在寻找array_walk()
的用例,所以我去了PHP文档并查看了这个例子。
但我不明白函数test_alter()
如何修改数组的值。
你能解释一下吗?
以下是代码:
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
function test_alter(&$item1, $key, $prefix)
{
$item1 = "$prefix: $item1";
}
function test_print($item2, $key)
{
echo "$key. $item2<br />\n";
}
echo "Before ...:\n";
array_walk($fruits, 'test_print');
array_walk($fruits, 'test_alter', 'fruit');
print_r($fruits);