以前書いたApach 、MySAQL 、PHP を Windows 環境でも開発できるように簡☆単さを重視して Eclipse の Pleiades All in One PHP をインストールします。 | oki2a24での Xdebug の設定は次のサイトを参考にさせていただきました。
具体的には、C:\pleiades\xampp\php\php.ini の末尾に次を追加したのでした。
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
xdebug.remote_log = "C:\pleiades\xampp\php\logs\xdebug.log"
xdebug.collect_params = 1
xdebug.dump.GET = ""
xdebug.dump.POST = ""
xdebug.profiler_enable = 1
xdebug.profiler_output_dir = "C:\pleiades\xampp\tmp"
でも、なぜこれでよいかわかりません。今回はこれらの設定をいじって Xdebug の設定について勉強します。