[PHP-users 13598] Re: [長文] ezweb と mbstring.http_output=SJIS
Masayuki Tadano
php-users@php.gr.jp
Wed, 26 Feb 2003 17:08:30 +0900
ただのと申します。
TS>> [長文で失礼します。]
TS>>
TS>> こんにちは、関隆です。
(いかバッサリ)
TS>> case EZWEB:
TS>> header("Content-Type: text/x-hdml; charset=Shift_JIS"); // NG
TS>> // header("Content-Type: text/x-hdml; charset=EUC-JP"); // OK
Content-Type は、4.2 からは、ini_set で設定するように変更に
なったと思います。
if ( PHP_VERSION < "4.2.0" ) {
header("Content-Type: text/x-hdml; charset=Shift_JIS\n");
} else {
ini_set('default_mimetype', 'text/x-hdml');
}
# あれ、charset が書いてないな。
私は、ソースコードは EUC で記述して、同様に、http_output で
SJIS に変換しています。
--
Masayuki Tadano <tadano@d-product.co.jp>