禁用通知yii

use*_*249 4 yii notice

如何禁用通知,我在idex.php中尝试但是通知是回声,我怎么能禁用它.

<?
    define("YII_ENBLE_ERROR_HANDLER",false)
    define("YII_ENBLE_EXCEPTION_HANDLER",false)
?>
Run Code Online (Sandbox Code Playgroud)

在php.ini中

<?display_errors = off ?>
Run Code Online (Sandbox Code Playgroud)

Val*_*sky 9

更新public/index.php

<?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);
Run Code Online (Sandbox Code Playgroud)