Monthly Archives: 11月 2007

WindowsでPHPプログラムをUTF-8で保存し、ブラウザへUTF-8で出力する場合の設定

output_buffering = Off default_charset = UTF-8 extension=php_mbstring.dll mbstring.language = Japanese mbstrin … Continue reading

Posted in 未分類 | Leave a comment

WindowsでPHPプログラムをEUC-JPで保存し、ブラウザへEUC-JPで出力する場合の設定

output_buffering = Off default_charset = EUC-JP extension=php_mbstring.dll mbstring.language = Japanese mbstri … Continue reading

Posted in 未分類 | Leave a comment

WindowsでPHPプログラムをEUC-JPで保存し、ブラウザへShift_JISで出力する場合の設定

output_buffering = On output_handler = mb_output_handler default_charset = Shift_JIS extension=php_mbstring.dl … Continue reading

Posted in 未分類 | Leave a comment

WindowsでPHPプログラムをShift_JISで保存し、ブラウザへEUC-JPで出力する場合の設定

output_buffering = On output_handler = mb_output_handler default_charset = EUC-JP extension=php_mbstring.dll m … Continue reading

Posted in 未分類 | Leave a comment

WindowsでPHPプログラムをShift_JISで保存し、ブラウザへShift_JISで出力する場合の設定

output_buffering = Off default_charset = Shift_JIS extension=php_mbstring.dll mbstring.language = Japanese mbs … Continue reading

Posted in 未分類 | Leave a comment