靜態變量僅在局部函數域中存在
function test(){
static $a=
$a++;
echo $a;
}
test();//
test();//
test();//
Note: 靜態變量可以按照上面的例子聲明
static $a=
static $a=sqrt(
像上面的賦值方式會報錯
From:http://tw.wingwit.com/Article/program/PHP/201311/21197.html
靜態變量僅在局部函數域中存在
test();//
test();//
test();//
Note: 靜態變量可以按照上面的例子聲明
像上面的賦值方式會報錯