Home >>PHP Object Oriented >PHP Static Variables
<?php function Test() { $x=0; echo $x; $x++; } Test(); Test(); Test(); ?>
<?php function Test() { static $x=0; echo $x; $x++; } Test(); Test(); Test(); ?>