我试图在Codeigniter中隐藏错误通知。
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'development':
ini_set('display_errors', '0');
error_reporting(E_ALL);
break;
case 'testing':
case 'production':
error_reporting(0);
break;
default:
exit('The application environment is not set correctly.');
}
}
但错误仍然显示
严重性:警告
消息:为foreach()提供的参数无效
文件名:controllers / userindex.php
行号:102