<?php function test() { $orig = $GLOBALS; messUp(); var_dump( isset( $orig['foo'] ) ); } function messUp() { $GLOBALS['foo'] = 42; } test();
You have javascript disabled. You will not be able to edit any code.