fork download
  1. <?php
  2. testar('0');
  3. testar('1');
  4. testar(0);
  5. testar(1);
  6.  
  7. function testar($testeBool){
  8. echo $testeBool == true ? "teste bem sucedido" : "temos um problema";
  9. }
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
temos um problemateste bem sucedidotemos um problemateste bem sucedido