PhpStrom調試,由XDebug提供支持

1、須要添加到php.ini中的內容

裏面的各類地址,按照實際環境與需求修改php

[XDebug]
zend_extension="D:\phpStudy\php\php-7.1.12-x86\ext\php_xdebug-2.5.5-7.1-vc14.dll"
;是否開啓遠程調試
xdebug.remote_enable = on
;是否開啓遠程調試自動啓動
xdebug.remote_autostart = 1
;容許調試的客戶端IP
xdebug.remote_host=127.0.0.1
;是否開啓調試內容
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_name = cachegrind.out.%t.%p
;調試輸出路徑
xdebug.profiler_output_dir="D:\phpStudy\tmp\xdebug"

xdebug.show_local_vars=0

xdebug.auto_trace = On
;跟蹤輸出路徑
xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug"

2、若是把上面配置信息添加到系統path那個PHP環境中時,則能調試的是 PHP script

3、添加到本地web環境中,則是調試PHP web page

相關文章
相關標籤/搜索