//Smarty用テンプレートがShiftJISでも使えるようにする。
$smarty->register_prefilter(“convert_encoding_to_eucjp”);
$smarty->register_postfilter(“convert_encoding_to_sjis”);
//Smarty用SJIS文字化け対策
function convert_encoding_to_eucjp($template_source, &$smart) {
if (function_exists(“mb_convert_encoding”)) {
$enc = mb_detect_encoding($template_source, “auto”);
if ($enc != “EUC-JP”) {
return mb_convert_encoding($template_source, “EUC-JP”, $enc);
}
}
return $template_source;
}
function convert_encoding_to_sjis($template_source, &$smart) {
if (function_exists(“mb_convert_encoding”)) {
return mb_convert_encoding($template_source, “SJIS”, “EUC-JP”);
}
return $template_source;
}