在此記錄:
xdebug.profiler_output_dir="H:\install\phpStudy\tmp\xdebug"
xdebug.trace_output_dir="H:\install\phpStudy\tmp\xdebug"
zend_extension="H:\install\phpStudy\php\php-5.6.27-nts\ext\php_xdebug.dll"
xdebug.profiler_enable = 1
xdebug.auto_trace = 1;
xdebug.show_exception_trace = 1
;這里必須設置為0,為了能使用瀏覽器插件 xdebug helper配合調試
xdebug.remote_autostart = 0 ;
xdebug.remote_enable = 1 ;
;這里是開啟遠程調試
xdebug.remote_handler = "dbgp" ;
;遠程調試的host
xdebug.remote_host = "127.0.0.1" ;
;遠程調試的端口號
xdebug.remote_port = 9000 ;
;遠程調試的對應 key
xdebug.idekey="PHPSTORM" ;
