Skip to content

Instantly share code, notes, and snippets.

@kevingessner
Created February 28, 2014 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevingessner/9274224 to your computer and use it in GitHub Desktop.
Save kevingessner/9274224 to your computer and use it in GitHub Desktop.
php > $a = [['foo' => 'bar']];
php > foreach ($a as $b) $b['foo'] = 'quux';
php > print_r($a);
Array
(
[0] => Array
(
[foo] => bar
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment