phpstorm+xdebug/php项目调试

前提:项目使用xampp集成

一、下载xdebug,当到xampp/php/exp目录下

phpstorm+xdebug/php项目调试_第1张图片

 二、配置php.ini

phpstorm+xdebug/php项目调试_第2张图片

[Xdebug]
zend_extension="D:/xampp/php/ext/php_xdebug.dll"
xdebug.collect_params=On
xdebug.collect_return=On
xdebug.auto_trace=On
xdebug.trace_output_dir="D:\xampp\php\tmp\xdebug"
xdebug.profiler_enable=On
xdebug.profiler_enable_trigger=On
xdebug.profiler_output_dir="D:\xampp\php\tmp\xdebug"
#如果开启此,将忽略下面的 xdebug.remote_host 的参数。 <一台webserver有多个开发者的工作目录的时候使用,如:p1.xx.com,p2.xx.com,p3.xx.com 。。。等。 >
xdebug.remote_connect_back = On
#允许远程调试
xdebug.remote_enable=On
#远程调试地址
xdebug.remote_host=127.0.0.1
#远程调试端口
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
#调试器的关键字
xdebug.idekey=PHPSTORM

三、配置phpstorm

(一)、【File】-【Settings】-【Languages&Frameworks】-【PHP】

phpstorm+xdebug/php项目调试_第3张图片

 phpstorm+xdebug/php项目调试_第4张图片

(二)、【File】-【Settings】-【Languages&Frameworks】-【PHP】-【Debug】

phpstorm+xdebug/php项目调试_第5张图片

(三)、【File】-【Settings】-【Languages&Frameworks】-【PHP】-【Debug】-【DBGp Proxy】

phpstorm+xdebug/php项目调试_第6张图片
(四)、【File】-【Settings】-【Languages&Frameworks】-【PHP】-【Server】

phpstorm+xdebug/php项目调试_第7张图片

 (五)、【Edit Configurations】

phpstorm+xdebug/php项目调试_第8张图片

 1、【+】-【PHP Web Page】

phpstorm+xdebug/php项目调试_第9张图片

2、

phpstorm+xdebug/php项目调试_第10张图片

 (六)、【Run】-【Web Server Debug Validation】

phpstorm+xdebug/php项目调试_第11张图片

 【Validate】出现以下为正确:

phpstorm+xdebug/php项目调试_第12张图片

 四、启动xampp

phpstorm+xdebug/php项目调试_第13张图片

五、访问页面即可debug

 

 

 

 

 

你可能感兴趣的:(php,zentao,php,phpstorm,开发语言)