fork download
  1. <?php
  2. $bar = false;
  3. $baz = 42;
  4. $boo = 'yes';
  5. $foo = NULL;
  6. foreach (array($bar, $baz, $boo) as $val) {
  7. if ($val) {
  8. $foo = $val;
  9. break;
  10. }
  11. }
  12. echo($foo);
  13. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
42