Skip to content

Instantly share code, notes, and snippets.

@tom--
Created July 1, 2016 12:31
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 tom--/80fd6cc1fd2486433ba11a36c5875c36 to your computer and use it in GitHub Desktop.
Save tom--/80fd6cc1fd2486433ba11a36c5875c36 to your computer and use it in GitHub Desktop.
<?php
$a = [1, 3];
foreach ($a as $v) {
var_dump($v);
$a[1] = 9;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment