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