Laravel + Nginx + PHP CGI7 で Xdebug を使用する

PHP CGI7 がポート9000を使用するため、Xdebug のポートを変更


手順

1. PHPStorm の設定を変更

2. php.ini を変更


[XDebug]

zend_extension="C:\Php\7\ext\php_xdebug-2.7.0-7.3-vc15-x86_64.dll"

xdebug.profiler_append = 0

xdebug.profiler_enable = 1

xdebug.profiler_enable_trigger = 0

xdebug.profiler_output_dir = "C:/Php/7/tmp"

xdebug.profiler_output_name = "cachegrind.out.%t-%s"

xdebug.remote_enable = 1

xdebug.remote_autostart = 1

xdebug.remote_handler = "dbgp"

xdebug.remote_host = "127.0.0.1"

xdebug.remote_port = 9001

xdebug.auto_trace = 1

xdebug.trace_output_dir = "C:/Php/7/trace"

xdebug.idekey = "PHPSTORM"



3. Windowsファイアウォールの設定を変更


(参考記事)