SJISユーザ用のphp.iniの 設定

 ;; 出力のバッファリングを有効に
  output_buffering     = On
 
 ;; 出力の変換を有効にするために mb_output_handler を設定
  output_handler       = mb_output_handler
 
 ;; HTTPヘッダ charset を設定
  default_charset      = Shift_JIS
 
 ;; HTTP入力エンコーディング変換をautoに設定
  mbstring.http_input  = auto 
 
 ;; SJISに変換
  mbstring.http_output = SJIS    
 
 ;; 内部エンコーディングをEUC-JPに設定
  mbstring.internal_encoding = EUC-JP    
 
 ;; 無効な文字を出力しない
  mbstring.substitute_character = none