fork download
  1. <?php
  2. function myfunc() {
  3. static $id = 0;
  4. $id++;
  5. echo $id;
  6. }
  7. myfunc();
  8. myfunc();
  9. myfunc();
  10. ?>
Success #stdin #stdout 0.02s 26020KB
stdin
Standard input is empty
stdout
123