静态变量

  1. function test() {
  2. static $a = 0;
  3. echo $a;
  4. $a++;
  5. }
  6. test();
  7. test();
  8. test();
05-11 15:10