Disable notification yii

How to disable notification, I try in idex.php But notification is an echo of how I can disable this.

<? define("YII_ENBLE_ERROR_HANDLER",false) define("YII_ENBLE_EXCEPTION_HANDLER",false) ?> 

in php.ini

 <?display_errors = off ?> 
+4
source share
1 answer

Public / index.php update

 <?php define('YII_ENABLE_ERROR_HANDLER', false); define('YII_ENABLE_EXCEPTION_HANDLER', false); // Turn off all error reporting // error_reporting(0); // Report all errors except E_NOTICE // This is the default value set in php.ini error_reporting(E_ALL ^ E_NOTICE); 
+6
source

Source: https://habr.com/ru/post/1482812/


All Articles