Skip to content

Instantly share code, notes, and snippets.

@vrkansagara
Created September 5, 2020 04:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vrkansagara/ded3dbd1af4d77cd8903a0abec0936ba to your computer and use it in GitHub Desktop.
Save vrkansagara/ded3dbd1af4d77cd8903a0abec0936ba to your computer and use it in GitHub Desktop.
PHP file startup
<?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