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