摘要: <?php // 静态变量:实现函数在多次调用的过程中共享数据 namespace ns3; function test(){ static $sum = 0; $sum = $sum+1; return $sum; } echo test(),'<br>'; echo test(),'<br>'; 阅读全文
posted @ 2020-04-19 15:19 林口 阅读(130) 评论(0) 推荐(0) 编辑