[PHP-users 15636]Re: SJISに出力したい
Mashiki
mashiki @ yanah.com
2003年 6月 3日 (火) 10:19:01 JST
Mashikiです。
>imodeサイトを作りたいのですがphp.inimbstringを
>mbstring.detect_order→ auto
>mbstring.func_overload→ 0
>mbstring.http_input→ auto
>mbstring.http_output→ SJIS
>mbstring.internal_encoding→ EUC-JP
>mbstring.substitute_character→ no value
>に変更しスクリプトを
:
>と書いて実行したのですがEUCにて出力されます。
output_buffering
output_handler
あたりも確認してください。
output_buffering=1
output_handler=mb_output_handler
のようにしておいたほうが一般的かと思います
掲示のソースは
<?php
header("Content-Type: text/html; charset=Shift-JIS");
$test1 = "あああ";
print $test1;
?>
で動くのではないでしょうか。
PHP-users メーリングリストの案内