Skip to content

Instantly share code, notes, and snippets.

@ShilGen
Last active June 16, 2023 07:38
Show Gist options
  • Save ShilGen/b60f4f9397192f5822375f512df6fffc to your computer and use it in GitHub Desktop.
Save ShilGen/b60f4f9397192f5822375f512df6fffc to your computer and use it in GitHub Desktop.
PHP debug
<?php
if ((isset($_SERVER['QUERY_STRING'])) and ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') ){
define('DEBUG', 1);
error_reporting(E_ALL);
ini_set('display_errors', true);
ini_set('html_errors', true);
} else {
define('DEBUG', 0);
}
if (!defined('_BR_')) define('_BR_',chr(13).chr(10));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment