Skip to content

Instantly share code, notes, and snippets.

@az1979
Last active March 24, 2017 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save az1979/709d8306a09e1a187f1948be69b5a8e9 to your computer and use it in GitHub Desktop.
Save az1979/709d8306a09e1a187f1948be69b5a8e9 to your computer and use it in GitHub Desktop.
XAMPPの設定 php.ini
// 日本語化する設定です
date.timezone = Europe/Berlin
date.timezone = Asia/Tokyo
;mbstring.language = Japanese
mbstring.language = Japanese
;mbstring.internal_encoding = EUC-JP
mbstring.internal_encoding = UTF-8
;mbstring.http_input = auto
mbstring.http_input = pass
;mbstring.http_output = SJIS
mbstring.http_output = pass
;mbstring.encoding_translation = Off
mbstring.encoding_translation = Off
;mbstring.detect_order = auto
mbstring.detect_order = UTF-8,SJIS,EUC-JP,JIS,ASCII
;mbstring.substitute_character = none;
mbstring.substitute_character = none;
;mbstring.func_overload = 0
mbstring.func_overload = 0
;mbstring.strict_detection = Off
mbstring.strict_detection = Off
// ファイルのアップロードサイズを変更します。
// 開発環境のPCのスペックに合わせて数字を変更してください。
// あまり大きな値を設定すると
// PCの動作に影響を及ぼす可能性があります。
upload_max_filesize = 2M
upload_max_filesize = 256M
post_max_size = 8M
post_max_size = 256M
memory_limit = 128M
memory_limit = 512M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment