解决yii2框架报错:yii\base\ErrorException: Undefined index:的方法
解决yii2框架报错:yii\base\ErrorException: Undefined index:的方法
- 报错
- 解决方案
报错
PHP Notice – yii\base\ErrorException
Undefined index: company_id
解决方案
查询系统环境php.ini的error_reporting 配置
error_reporting = E_ALL & ~E_DEPRECATED
修改为
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE & ~E_WARNING
重启php-fpm生效
systemctl restart php-fpm.service
还没有评论,来说两句吧...