Skip to content

Instantly share code, notes, and snippets.

@jamband
Last active December 9, 2015 19:58
Show Gist options
  • Save jamband/4320336 to your computer and use it in GitHub Desktop.
Save jamband/4320336 to your computer and use it in GitHub Desktop.
MAMPのphp.iniの設定例
# エラー表示
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