All pastes #624971 Raw Edit

Unnamed

public text v1 · immutable
#624971 ·published 2007-07-18 17:41 UTC
rendered paste body
$b = "aaa";
function a() {
	global $b;
	$a = new stdClass();
	$b = &$a;
}
a();
var_dump($b);

// why is $b "aaa" at the end?