fork download
  1. <?php
  2.  
  3. $a = 20;
  4.  
  5. function prof($koluslug){
  6. for($i = 0; $i<$koluslug; $i++){
  7. echo $i;
  8. }
  9. }
  10.  
  11. prof($a);
  12.  
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
012345678910111213141516171819