Код: Выделить всё
$products = [ ['id' => 1], ['id' => 2], ['id' => 3] ];
foreach($products as &$product)
$product['foo'] = 'bar';
foreach($products as $product)
print($product['id']);
Код: Выделить всё
array(3) {
[0]=>
array(2) {
["id"]=>
int(1)
["foo"]=>
string(3) "bar"
}
[1]=>
array(2) {
["id"]=>
int(2)
["foo"]=>
string(3) "bar"
}
[2]=>
&array(2) {
["id"]=>
int(3)
["foo"]=>
string(3) "bar"
}
}
Подробнее здесь: https://stackoverflow.com/questions/793 ... on-referen
Мобильная версия