fork download
  1. <?php
  2.  
  3. $a = 2;
  4. echo $a = (int)2/10;
  5. echo PHP_EOL;
  6. echo (int)$a;
  7. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
0.2
0