使用codeigniter转换utf-8中的视图

时间:2014-09-04 20:42:52

标签: php codeigniter utf-8 codeigniter-2 utf8-decode

我遇到编码问题,我尝试使用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';请提前帮助我,请提前告知

1 个答案:

答案 0 :(得分:0)

没有直接转换方法。您必须使用str_replace or something similar。有关详细信息,您可以看到:PHP converting special characters, like ş to s, ţ to t, ă to a