TCPDF 致命错误:允许的内存大小 134217728 字节已耗尽(尝试分配 25368 字节)

发布于 2024-12-01 08:07:51 字数 488 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林很绿却致人迷途 2024-12-08 08:07:51

在这种情况下,请通过 ini_set() 函数增加脚本的内存限制。

In this case please increase the memory limit for the script through the ini_set() function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文