gpt4 book ai didi

php - PHP 7 上的 TCPDF 错误

转载 作者:行者123 更新时间:2023-12-03 23:21:49 26 4
gpt4 key购买 nike

我正在使用 TCPDF 插件在 PHP 7 中生成 PDF。相同的代码在较低版本的 PHP 5 中运行良好,但是当我在 PHP 7 中运行相同的代码时,它给出了以下错误消息。

A PHP Error was encountered
Severity: 8192

Message: The each() function is deprecated. This message will be suppressed on further calls

Filename: tcpdf/tcpdf.php

Line Number: 16542

最佳答案

在文件中编辑:\FPDI\fpdi.php 第 567 行:
//while (list($k, $v) = each($value[1])) {
在代码中:foreach ($value[1] AS $k => $v) {
并在 File:\tcpdf\tcpdf.php 中编辑第 16543 行:
//while (list($id, $name) = each($attr_array[1])) {
在代码中:foreach($attr_array[1] as $id => $name) {

关于php - PHP 7 上的 TCPDF 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51568963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com