I came across some weird behavior in PHP:
function f($var) { // not using references
foreach ($var as $k => $v) {
unset($var[$k]); // shouldn't this unset from a copy?!
}
}
print '<pre>';
var_dump($GLOBALS); // array
f($GLOBALS);
var_dump($GLOBALS); // null?!
Anybody know why this is happening?