<?php function testing() { static $a = 1; $a *= 2; echo $a." "; } testing(); //2 testing(); //4 testing(); //8