fork download
  1. <?php
  2. function beDifferentFirstTime() {
  3. static $firstTime = true;
  4. if($firstTime) {
  5. $firstTime = false;
  6. echo "I will say this only once, so listen carefully\n";
  7. }
  8. echo "The cabbage is in the cart. I repeat, the cabbage is in the cart.\n";
  9. }
  10. beDifferentFirstTime();
  11. beDifferentFirstTime();
Success #stdin #stdout 0.02s 24112KB
stdin
Standard input is empty
stdout
I will say this only once, so listen carefully
The cabbage is in the cart. I repeat, the cabbage is in the cart.
The cabbage is in the cart. I repeat, the cabbage is in the cart.