文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>php funciton 中的static

php funciton 中的static

时间:2011-01-05  来源:Enoch

<?php
function t(){
    static $a= 0;
    ++ $a;
   var_dump($a);
}
$i = 3;
while ($i--){
    t();
}
结果 1 ,2,3
见手册 $a is initialized only in first call of function and every time the t() function is called it will print the value of $a and increment it.

static的变量初始化只执行一次
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载