gpt4 book ai didi

php - TCPDF ERROR : Some data has already been output, 无法发送 PDF 文件

转载 作者:IT王子 更新时间:2023-10-29 00:04:21 33 4
gpt4 key购买 nike

我在尝试将自己的数组添加到代码中时不断收到此错误。这是我的数组;

$array = array();

while (odbc_fetch_row($rs))
{
$array[] = odbc_result($rs,'Product Name');
}

$test = print_r($array);

原代码在这里。我正在使用示例页面进行尝试,因为我知道该示例页面运行良好。

http://www.tcpdf.org/examples/example_001.phps

此代码位于 $html 变量之前,当设置它时,我只需将 $test 变量添加到 $html 变量中。 odbc 连接工作正常,示例在我添加任何代码之前工作正常,但是当我运行脚本时出现此错误;

Array ( [0] => Test1 [1] => Test2 ) TCPDF ERROR: Some data has already been output, can't send PDF file

并且Array中也有2个以上的item。有什么想法吗?

最佳答案

添加函数 ob_end_clean();在调用输出函数之前。它在自定义 Wordpress 函数中对我有用!

ob_end_clean();
$pdf->Output($pdf_name, 'I');

关于php - TCPDF ERROR : Some data has already been output, 无法发送 PDF 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16011050/

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