fork download
  1. <?php
  2.  
  3. function test(){
  4. throw new Exception('error');
  5. }
  6.  
  7.  
  8. try{
  9. test();
  10. }catch(Exception $ex){
  11. echo $ex->getMessage();
  12. }
Success #stdin #stdout 0.02s 24320KB
stdin
Standard input is empty
stdout
error