$GLOBALS with property
<?php $a = 7; function test() { $GLOBALS['a'] = 20; } test(); echo "\$a = $a\n"; ?>