天天看點

php7 xdebug,phpstorm使用php7.0開發開啟xdebug調試功能

1.去下載下傳xdebug.dll,下載下傳的時候需要注意一下版本的問題,可以使用phpinfo();進行檢視php的版本.

下載下傳位址:https://xdebug.org/download.php

接着需要修改php.ini檔案,我們開發估計都是在Windows底下吧,反正我的php.ini是沒有xdebug的配置檔案的,需要自己加上去,

[XDebug]

xdebug.profiler_append = 0

xdebug.profiler_enable = 1

xdebug.profiler_enable_trigger = 0

xdebug.profiler_output_dir =”D:\phpStudy\tmp\xdebug”

xdebug.trace_output_dir =”D:\phpStudy\tmp\xdebug”

xdebug.profiler_output_name = “cache.out.%t-%s”

xdebug.remote_enable = 1

xdebug.remote_handler = “dbgp”

xdebug.remote_host = “127.0.0.1”

zend_extension=”D:\phpStudy\php70n\ext\php_xdebug-2.5.4-7.0-vc14-nts.dll”

接着….,其實不用配置phpstorm了,直接右鍵debug,就會有效果了.