Fork me on GitHub

php静态变量static

静态变量

  1. function test() {
  2. static $a = 0;
  3. echo $a;
  4. $a++;
  5. }
  6. test();
  7. test();
  8. test();
posted @ 2018-10-26 16:03  big2cat  阅读(124)  评论(0编辑  收藏  举报