我遇到编码问题,我尝试使用CodeIgniter在utf8中转换我的html,所以我的代码是:
public function generateTitlePage($company)
{
$this->load->library('dompdf_gen');
$dompdf = new DOMPDF();
$search = array('%27', '%20', '%C3%A2', '%C3%AE');
$replace = array('', ' ', 'â', 'î');
$company = str_replace($search, $replace, $company);
$html = '
<!DOCTYPE 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">
LIMITATĂ'.$company.'
</div>
</body>
</html>
';
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("welcome.pdf");
}
那么,我的输出pdf是LIMITAT?公司名称,我不明白为什么Ă未转换是使用元标记,我也使用Codeigniter配置:$ config ['charset'] ='UTF-8';请提前帮助我,请提前告知
答案 0 :(得分:0)
没有直接转换方法。您必须使用str_replace or something similar
。有关详细信息,您可以看到:PHP converting special characters, like ş to s, ţ to t, ă to a