篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinkphp5错误:Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 68 byte相关的知识,希望对你有一定的参考价值。
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 68 bytes)
1 $users = Db::name(‘users’)->select();
2 dump($users);
对于大数据量查询结果,其内容超出了memory size,修改代码如下:
1 $users = Db::name(‘users’)->limit(10)->select();
完美解决!!!
以上是关于Thinkphp5错误:Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 68 byte的主要内容,如果未能解决你的问题,请参考以下文章