1

1.具体过程:
2.服务器端(本地调试的情况下就是在本机)安装好XAMPP,停止apache服务(注意,如果直接退出XAMPP,是不会停止apache的)
3.在安装目录下找到php.ini,类似于D:xamppphpphp.ini,并打开
4.找到被注释掉的项目并按如下设置:
zend_extension = "D:xamppphpextphp_xdebug.dll"(根据实际情况确定)

        xdebug.remote_enable =1 //打开,可进行远程调试
        xdebug.remote_handler = "dbgp"
        xdebug.remote_host = "localhost"
        xdebug.remote_mode = "req"
        xdebug.remote_port = 9000
或者:
        xdebug.remote_enable = on
        xdebug.profiler_enable = off
        xdebug.profiler_enable_trigger = off
        xdebug.profiler_output_name = cachegrind.out.%t.%p
        xdebug.profiler_output_dir = "D:/wamp/tmp"
        xdebug.show_local_vars=0

5.其中remote_host 是指调试客户端的地址,即IDE所在的IP,同理remote_port 是客户端的端口,这两项在远程调试的情况下注意修改
6.保存文件,打开apache,这时候在CMD里输入 D:xamppphpphp.exe -m 看到XDebug,说明开启成功。至此,服务器端配置完毕
7.下面是客户端调试,打开phpStorm,进入File>Settings>PHP>Servers,这里要填写服务器端的相关信息,name填localhost,host填localhost,port填80,debugger选XDebug
8.进入File>Settings>PHP>Debug,看到XDebug选项卡,port填9000,其他默认
9.进入File>Settings>PHP>Debug>DBGp Proxy,IDE key 填 PHPSTORM,host 填localhost,port 填80
10.点OK退出设置。
11.打开浏览器,如果是用chrome或者Firefox可以找到对应的XDebug工具,工具的设置里的IDE KEY填上PHPSTORM,把localhost加入到白名单,以后调试的时候把工具启用就好了。如果是用其他浏览器,可以访问http://www.jetbrains.com/phps...,在右边填上PHPSTORM,点generate,把下面的链接添加到收藏夹,方便调用。
12.在phpStorm里打开监听,就是一个电话一样的按钮。
13.在浏览器里打开XDebug工具,访问localhost,与phpStorm连接成功!

若未成功,则需另按下图手动操作


茅十八
180 声望4 粉丝

我做不到的由你来,你做不到的由我来!!