Answers for "how to handle error in php.ini not to show error during production phase of the project"

PHP
10

show php errors

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Posted by: Guest on February-20-2020
0

echo errors php

<?php error_reporting(E_ALL); ?>
Posted by: Guest on September-15-2020

Code answers related to "how to handle error in php.ini not to show error during production phase of the project"

Browse Popular Code Answers by Language