Variable scope: function
<?php increment (); increment (); increment (); function increment () { $a=0; echo $a; $a++; } ?>