【发布时间】:2014-10-28 08:29:57
【问题描述】:
我有一个问题:我尝试使用 dompdf 和 php 导出 pdf,但我不能这样做,我不明白我的问题在哪里,所以我的代码是:
public function generateTitlePage($company)
{
$this->load->library('dompdf_gen');
$html='
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<div style="margin-top:20px;text-align: center;font-weight: bold">
Company:'.$company.'
</div>
</body>
<html>';
$dompdf = new DOMPDF();
$html = stripslashes($html);
$dompdf->load_html($html, 'UTF-8');
$dompdf->set_paper('a4', 'portrait');
$dompdf->render();
$dompdf->stream("welcome.pdf");
}
例如,如果我的 pdf 中有 ă,则此符号将转换为:%C4%83
【问题讨论】:
-
问same question multiple times 不是StackOverflow的使用方法。您应该将自己限制在一个问题上,回复 cmets,并编辑您的问题以清楚起见。
标签: php codeigniter codeigniter-2 php-5.3 dompdf