Mega Code Archive

 
Categories / Php / Language Basics
 

$GLOBALS with property

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