Skip to content

Instantly share code, notes, and snippets.

@xuyuji9000
Last active April 21, 2017 10:48
Show Gist options
  • Save xuyuji9000/cc40d58930aa4c62c1c8843fceacb3b2 to your computer and use it in GitHub Desktop.
Save xuyuji9000/cc40d58930aa4c62c1c8843fceacb3b2 to your computer and use it in GitHub Desktop.
PHP try catch
<?php
function inverse($x) {
if(!$x)
throw new Exception("Division by zero.");
return 1 / $x;
}
try {
echo inverse(5)."\n";
echo inverse(0)."\n";
} catch (Exception $e) {
echo 'Caught Exception:', $e->getMessage(), "\n";
}
echo "Hello World.\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment