fork download
  1. <?php
  2. $x=10;
  3. $i=1;
  4. while ($x >0) {
  5. $x=$x%10;
  6. $i++;
  7. }
  8. echo $i;
Success #stdin #stdout 0.04s 82880KB
stdin
Standard input is empty
stdout
2