Created
August 9, 2016 15:21
-
-
Save arodu/30dfb2848f19e94d85d606146c77defd to your computer and use it in GitHub Desktop.
Mostrar errores de PHP en tiempo de ejecución
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set('display_errors', 'On'); | |
error_reporting(E_ALL); | |
// Code... | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment