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