TCPDF 致命错误:允许的内存大小 134217728 字节已耗尽(尝试分配 25368 字节)
我正在使用 TCPDF 库同时将 pdf 下载到我的本地驱动器上。
PHP 代码:
$text = //an array of id's
$id = explode(',', $text);
for ($i=0;$i<count($id);$i++){
if(//id[$i] exists in database){
createPDF($id[$i],'test123','F');
}
}
createPDF
是 tcpdf 库用于创建 pdf 的地方。
这可行,并且生成了前几个 pdf,但很快,我收到一条错误消息:
致命错误:允许的内存大小 134217728 字节已耗尽(尝试分配 25368 字节)...
有没有办法解决这个问题?或者它是一个tcpdf
错误?
I am using the TCPDF library to simultaneously download pdf's onto my local drive.
PHP CODE:
$text = //an array of id's
$id = explode(',', $text);
for ($i=0;$i<count($id);$i++){
if(//id[$i] exists in database){
createPDF($id[$i],'test123','F');
}
}
createPDF
is where the tcpdf library is used to create pdf's.
This works, and the first few pdf's are generated, but soon enough, I get an error saying:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 25368 bytes)...
Is there a way I could fix this? or is it a tcpdf
bug?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,请通过
ini_set()
函数增加脚本的内存限制。In this case please increase the memory limit for the script through the
ini_set()
function.