Skip to content

Instantly share code, notes, and snippets.

@GromNaN
Created November 21, 2012 09:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GromNaN/4123974 to your computer and use it in GitHub Desktop.
Save GromNaN/4123974 to your computer and use it in GitHub Desktop.
Jolies erreurs PHP
<?php
function handler ($errno, $errstr, $errfile, $errline)
{
echo "<div style=\"background: #ffe13b; color: black; position: fixed; bottom: 0; width: 100%; text-align: center; font-size: 13px; padding: 5px; box-shadow: 0 0 5px black;\">Erreur $errno $errstr in $errfile:$errline
</div>";
}
set_error_handler('handler');
@jeromemacias
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment