Shift_JIS(SJIS) で出力! for 1.5.x
用意するもの
- システムプラグイン
ソース
function onAfterRender() { global $mainframe; if (!$mainframe->isAdmin()) { // 管理画面は変換しなくていいんじゃないかな $doc =& JFactory::getDocument(); $doc->setCharset('Shift_JIS'); $doc->setMetaData('content-type', 'text/html; charset=Shift_JIS', true); $body = JResponse::getBody(); JResponse::setBody(mb_convert_encoding($body, 'SJIS-WIN', 'utf-8')); } }