fork download
  1. <?php
  2. echo true ? '1' : false ? '2' : '3';
  3. echo "\n";
  4. echo true ? '1' : (false ? '2' : '3');
  5.  
  6. //https://pt.stackoverflow.com/q/342725/101
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
2
1