try { // Code that may throw an exception $result = 10 / 0; } catch (Exception $e) { // Code to handle the exception echo "An error occurred: " . $e->getMessage(); }
try { // Code that may throw an exception $result = 10 / 0; } catch (Exception $e) { // Code to handle the exception echo "An error occurred: " . $e->getMessage(); }