Last active
April 7, 2018 08:02
-
-
Save aa21/2ac128484a160d6d162b to your computer and use it in GitHub Desktop.
PHP
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 | |
error_reporting(-1); // reports all errors | |
ini_set("display_errors", "1"); // shows all errors | |
ini_set("log_errors", 1); | |
ini_set("error_log", "/tmp/php-error.log"); | |
?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment