Smarty:特殊字符变得不必要 - utf8

时间:2010-12-14 13:56:20

标签: php utf-8 smarty

我有特殊字符的数据(法语重音坟墓)。当我用php脚本和输出(打印)选择它看起来很好。当我传递给Smarty时,角色会被改变。我的html有以下设置: meta http-equiv =“content-type”content =“text / html; charset = utf-8” 不确定缺少什么或不正确?

gr,Patrick

1 个答案:

答案 0 :(得分:0)

把它放在你的php文件的开头并检查:

// utf-8

header(“Pragma:no-cache”); header('Content-type:text / html; charset = utf-8');

// mbstring UTF8编码(可选)

mb_detect_order(array('UTF-8','ASCII')); mb_internal_encoding( 'UTF-8'); mb_http_output( 'UTF-8'); mb_regex_encoding( 'UTF-8');