$foo = 10; $bar = 20; function change() { global $foo; $bar = 0; $foo++; } change(); echo $foo, ' ', $bar;