Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Last active October 13, 2023 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelmaeuer/3d7469afd2262753701511cf9164ca17 to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/3d7469afd2262753701511cf9164ca17 to your computer and use it in GitHub Desktop.
<?php
if ($divisor == 0) {
// Other error-levels: E_USER_NOTICE, E_USER_WARNING
trigger_error("Cannot divide by zero", E_USER_ERROR);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment