Skip to content

Instantly share code, notes, and snippets.

@niklasvh
Created July 24, 2012 17:26
Show Gist options
  • Save niklasvh/3171344 to your computer and use it in GitHub Desktop.
Save niklasvh/3171344 to your computer and use it in GitHub Desktop.
<?php
class C
{
function __call($name, $values)
{
$values[0][0] = 'changed';
}
}
$a = array('original');
$b = array('original');
$hack =& $b[0];
$c = new C;
$c->f($a);
$c->f($b);
var_dump($a, $b);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment