PHP The static Keyword


SUBMITTED BY: henry1874w

DATE: June 4, 2017, 8 p.m.

FORMAT: Text only

SIZE: 113 Bytes

HITS: 220

  1. <?php
  2. function myTest() {
  3. static $x = 0;
  4. echo $x;
  5. $x++;
  6. }
  7. myTest();
  8. myTest();
  9. myTest();
  10. ?>

comments powered by Disqus