<?php $x = 0; try { if ( $x == 0 ) { throw new Exception('x is zero'); } } catch ( Exception $ex ) { echo 'Caught exception: ', $ex->getMessage(); } echo 'after try block';
You have javascript disabled. You will not be able to edit any code.