php message error code example
Example 1: php error
<?php error_reporting(E_ALL); ?>
Example 2: report simple error in php
// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
<?php error_reporting(E_ALL); ?>
// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);