thinkphp5中Indirect modification of overloaded element of XXX has no effect的解决办法

最近在使用Thinkphp5做foreach循环嵌套的时候报错:Indirect modification of overloaded element of XXX has no effect,网上搜索了一下,很多框架会报这个错误,比如Laravel、YII、Thinkphp5等,错误的直译意思为:间接修改XXX的重载元素没有效果。解决办法是设置一个中间变量。

上文转载至: https://www.cnblogs.com/baker95935/p/8384587.html

本人解决方法是: $list = $list->all();
list是从数据库取到的所有数据

代码: 没有加中间变量就报这个错误:
thinkphp5中Indirect modification of overloaded element of XXX has no effect的解决办法_第1张图片
在这里加上即可:
thinkphp5中Indirect modification of overloaded element of XXX has no effect的解决办法_第2张图片

你可能感兴趣的:(#,ThinkPHP)