Created
September 5, 2020 04:10
-
-
Save vrkansagara/ded3dbd1af4d77cd8903a0abec0936ba to your computer and use it in GitHub Desktop.
PHP file startup
This file contains hidden or 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 | |
declare(strict_types=1); | |
date_default_timezone_set('UTC'); | |
error_reporting(E_ALL); | |
ini_set('display_errors', '1'); | |
ini_set("display_startup_errors", '1'); | |
ini_set("log_errors", '1'); | |
chdir(dirname(__DIR__)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment