gpt4 book ai didi

php - 以 HTML 形式出现的数据直接在模式窗口中回显,但不显示在 PDF 中

转载 作者:行者123 更新时间:2023-11-28 04:46:08 25 4
gpt4 key购买 nike

我正在研究 codeigniter。我正在将数据从一个 View 发送到一个获取数据的文件,当我回显它时,它会立即显示在模态窗口中,但是一旦我编写 $mpdf->Output(); 数据就会显示出来不显示,屏幕显示为:
The error output on modal window

我发送的 html 是:

    $html='';

$html .='
<table width="100%" class="pat-demo" id="pqrs_csv_list">
<thead>
<tr>
<th class="cols">Measure ID</th>
<th class="cols">Measure Name</th>
<th class="cols">Met</th>
<th class="cols">Not eligible</th>
<th class="cols">Not met</th>
<th class="cols">Exclusion</th>
</tr>

</thead>
<tbody>';

foreach ($arr as $aRow)
{
if($counter==2) { $bgcolor =""; $counter=1;} else { $bgcolor = "#FFF9F9"; $counter++; }



$html .='<tr bgcolor="'.$bgcolor.'">
<td class="cols" width="8%">'.$aRow['measureId'].'</td>
<td class="cols" width="55%%">'.$aRow['measureName'].'</td>
<td class="cols" width="8%">'.$this->percentage($aRow[1], $total_visits)."%".'</td>
<td class="cols" width="8%">'.$this->percentage($aRow[2], $total_visits)."%".'</td>
<td class="cols" width="8%">'.$this->percentage($aRow[3], $total_visits)."%".'</td>
<td class="cols" width="8%">'.$this->percentage($aRow[4], $total_visits)."%".'</td>
</tr>';
}

$html .='</tbody>
</table>';

然后采用此 HTML 的文件以及我尝试在 pdf 查看器中显示它的位置具有代码:

    $mpdf = new mPDF('utf-8', 'A4-L', 0, '', 10, 10, 32, 25, 5, 2,2,'P');       
$mpdf->SetHTMLHeader('<div style="text-align: center; font-weight: bold;">'.$header.'</div>');
$mpdf->SetHTMLFooter($footer);

$mpdf->defaultheaderfontsize=10;
$mpdf->defaultheaderfontstyle='B';
$mpdf->defaultheaderline=0;
$mpdf->defaultfooterfontsize=10;
$mpdf->defaultfooterfontstyle='BI';
$mpdf->defaultfooterline=0;
header('Content-type: application/pdf');
$stylesheet = file_get_contents('admin_includes/css/print_pdf.css');
$mpdf->WriteHTML($stylesheet,1);
//echo $html;/// here it echos right but not goes to pdf
$mpdf->WriteHTML($html);
$mpdf->Output();

最佳答案

可能需要添加其他 header 。也许尝试以下任何组合:

header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: binary');
header('Content-disposition: attachment');

关于php - 以 HTML 形式出现的数据直接在模式窗口中回显,但不显示在 PDF 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40951145/

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