Static Variable. When a function is completed, all of its variables are normally deleted. <?php function Test() { $x=0; echo $x; $x++; } Test(); Test(); ...
確定! 回上一頁