gpt4 book ai didi

mpdf - 如何使用PHP编写PDF?

转载 作者:行者123 更新时间:2023-12-02 12:52:22 27 4
gpt4 key购买 nike

它不会在 pdf 中显示 ite1 值。为什么?您能纠正我的错误吗?

<?php


set_include_path($_SERVER['DOCUMENT_ROOT'] .'/mpdf/');

require('mpdf.php');

$n = 0;
$mpdf=new mPDF();

require_once('../../includes/common.php');
$result = mysql_query("SELECT * from sgc where year = '2010'") or die(mysql_error());
$row=mysql_fetch_array($result);
$nric=$row['nric'];
$row=mysql_fetch_array($result);
$meta_ite=$row['meta_ite'];

$mpdf->WriteHTML('<p>Hello World</p>');

$html1 = '<table>
<tr>
<td width="388">Module Description</td>
<td width="111"><div align="center">Grade</div></td>
<td width="92"><div align="center">Earned</div></td>
<td width="96"><div align="center">Authority</div></td>
<td width="74"><div align="center">Series</div></td>
</tr>';
$unser = $meta_ite;
$unser = unserialize($unser);
$count = count($unser);
for($j=0;$j<$count;$j++)
{
$ite1 = $unser[$i][0];
//print_r ($unser[$i][0]."--".$unser[$i][1]."--".$unser[$i][2]);

$html1 .= '<tr><td width="388">'.$nric.'</td>
<td width="111">'.$count.'</td>
<td width="92"><div align="center">'.$ite1.'</div></td>
<td width="96">ITE</td>
<td width="74">2010</td>
</tr>';

}
$html1 .= '</table>';

$mpdf->WriteHTML($html1);
$mpdf->Output('filename.pdf','D');
?>

最佳答案

首先添加您的 mpdf 文件

require_once('./mpdf/mpdf.php');

还可以打开调试功能来查看错误。

$mpdf->debug = true;

注意:确保您对服务器上的以下文件夹拥有完整权限(777755):

/ttfontdata/
/tmp/
/graph_cache/

关于mpdf - 如何使用PHP编写PDF?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5494453/

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