fork download
  1. <?php
  2. $bar = false;
  3. $baz = 42;
  4. $boo = 'yes';
  5. $foo = $bar ? $bar : ($baz ? $baz : ($boo ? $boo : NULL));
  6. echo($foo);
  7. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
42