LoginSignup
0
0

More than 5 years have passed since last update.

Smarty3のSHIFT-JIS対応方法

Posted at

テンプレートがSHIFT-JISの時の対応方法。

$smarty->registerFilter("pre","filterUtf8");
$smarty->registerFilter("output","filterSjis");

$smarty->display("index.tmpl");

//UTF-8からShift-JISへ
function filterSjis($buff, &$smarty){

return mb_convert_encoding($buff,"SJIS","UTF-8");
}
//Shift-JISからUTF-8へ
function filterUtf8($buff, &$smarty){

return mb_convert_encoding($buff,"UTF-8","SJIS");
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0