我想将“value2”更改为“我的字符串”。我知道这可以通过使用数组键来实现,但我想知道这是否是一种更清洁的方式。
$nested_array[] = array('value1', 'value2', 'value3');
foreach($nested_array as $values){
foreach($values as $value){
if($value == 'value2'){
$value = 'My string';
}
}
}