Skip to content

Instantly share code, notes, and snippets.

@d9k
Last active August 29, 2015 14:07
Show Gist options
  • Save d9k/056d8ac5017f38360328 to your computer and use it in GitHub Desktop.
Save d9k/056d8ac5017f38360328 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Online PHP Script Execution</title>
</head>
<body>
<?php
$a = array(array('a1' => 5, 'a2' => 6), array('a1' => 2, 'a2' => -1));
echo '<pre>' . var_export($a, true) . '</pre>';
foreach ($a as &$e){
$e['a2'] = $e['a2'] + 1;
}
//changes!
echo '<pre>'.var_export($a, true).'</pre>';
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment