這是我有:添加前綴在數組的數組中,然後返回它
$tests = array(
'id' => 'world',
'level2' => array(
array(
'id' => 'world2'
),
array(
'id' => 'world3'
),
array(
'id' => 'world4'
),
)
);
我想要什麼 - 前綴像'hello '
所有'id'
S IN 'level2'
陣列
我已經試過:
$tests = testing($tests);
function testing($tests) {
foreach ($tests['level2'] as $test) {
$test['id'] = 'hello ' . $test['id'];
}
return $tests;
}
var_dump($tests);
結果:array(2) { ["id"]=> string(5) "world" ["level2"]=> array(3) { [0]=> array(1) { ["id"]=> string(6) "world2" } [1]=> array(1) { ["id"]=> string(6) "world3" } [2]=> array(1) { ["id"]=> string(6) "world4" } } }
問題 - 不起作用。
有人嗎?提前致謝。
謝謝!這對我有效。 – Bobby