Last active
December 9, 2015 19:58
-
-
Save jamband/4320336 to your computer and use it in GitHub Desktop.
MAMPのphp.iniの設定例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# エラー表示 | |
display_errors = On | |
# タイムゾーン | |
date.timezone = "Asia/Tokyo" | |
# 文字コード | |
default_charset = "UTF-8" | |
mbstring.language = Japanese | |
mbstring.internal_encoding = UTF-8 | |
mbstring.detect_order = UTF-8,SJIS,EUC-JP,JIS,ASCII | |
# Xdebug | |
xdebug.remote_enable = On | |
xdebug.remote_handler = dbgp | |
xdebug.remote_mode = req | |
xdebug.remote_host = 127.0.0.1 | |
xdebug.remote_port = 9000 | |
xdebug.var_display_max_depth = 16 | |
xdebug.idekey = | |
xdebug.profiler_enable = On | |
xdebug.profiler_output_dir = "/Applications/MAMP/tmp/xdebug/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment