php.ini ファイルの error_reporting を次のように変更します: (推奨学習: yii チュートリアル)
error_reporting=E_ALL & ~E_NOTICE
php.ini ファイルを操作できない場合は、次の方法を使用して、エラー通知プロンプトを無効にするページに次のコードを追加できます。
/* Report all errors except E_NOTICE */ error_reporting(E_ALL^E_NOTICE);
上記のコードを使用します。エントリファイルの YII protected/index.php
error_reporting(E_ALL^E_NOTICE); // change the following paths if necessary $yii=dirname(__FILE__).'/../framework/yii.php'; $config=dirname(__FILE__).'/protected/config/main.php'; //引用系统常量配置文件 require_once dirname(__FILE__).'/protected/config/constant.php'; // remove the following lines when in production mode defined('YII_DEBUG') or define('YII_DEBUG',true); // specify how many levels of call stack should be shown in each log message defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); require_once($yii); Yii::createWebApplication($config)->run();
以上がyii エラープロンプトを閉じるの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。