fork download
  1. <?php
  2. $a=true;
  3. echo $a;
  4. $b="false";
  5. echo $b;
  6. ?>
  7. // your code goes here
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
1false// your code goes here