fork download
  1. <?php
  2.  
  3. $test = 2+2;
  4. $test2 = "2";
  5.  
  6. $test3 = $test + $test2;
  7.  
  8. echo $test3;
Success #stdin #stdout 0.01s 24340KB
stdin
Standard input is empty
stdout
6