运行环境:win7 64 旗舰版
使用的软件:
wampserver:wampserver2.4
zend studio:zend studio12.0.1
Xdebug:wampserver已经包含
目标:使用zend studio编写代码,并可以调试查看php代码的变量
1、wampserver
1.1 wampserver2.4下载
http://liquidtelecom.dl.sourceforge.net/project/wampserver/WampServer%202/Wampserver%202.4/Wampserver2.4-x64.exe
1.2 安装
参考: windows环境下wampserver的配置教程——超级详细
http://www.360doc.com/content/13/1113/09/426480_328813961.shtml
http://blog.csdn.net/imxiangzi/article/details/46533957
2、zend studio安装
参考:
Zend Studio 12 安装及破解
http://blog.csdn.net/imxiangzi/article/details/42980129
3、Xdebug配置
3.1 wamp端 xdebug 配置
3.1.1打开php.in文件,找到“; XDEBUG Extension”所在位置
原样如下:
; XDEBUG Extension
zend_extension = "c:/wamp/bin/php/php5.3.13/zend_ext/php_xdebug-2.2.0-5.3-vc9.dll"
[xdebug]
xdebug.remote_enable = off
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "D:/DevSoft/web/wamp2.4/tmp"
修改XDEBUG后的信息如下:
; XDEBUG Extension
zend_extension = "c:/wamp/bin/php/php5.3.13/zend_ext/php_xdebug-2.2.0-5.3-vc9.dll"
[xdebug]
xdebug.remote_enable = on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "D:/DevSoft/web/wamp2.4/tmp"
3.1.2简单说明如下:
允许远程调试:xdebug.remote_enable = on
默认调试协议:xdebug.remote_handler=dbgp
远程服务器IP地址(localhost指的是本机):xdebug.remote_host=localhost
默认端口:xdebug.remote_port=9000
至此,wamp端 xdebug 配置完成。
http://blog.csdn.net/xinzheng_wang/article/details/37930233
3.2 zendstudio端xdebug 配置
3.2.1 php Executables 设置
打开zendstudio9.0.3,依次选择 windows->preferences->PHP->PHP Executables Add 新的PHP Executables
如下图所示:
3.2.2 php servers 配置
接下来选择window-Preference-php Servers点击New
按照如下设置服务
3.2.3 Debug设置端口号
3.2.4 php debug 配置
配置debug如下图所示:PS:http://localhost:8080 是我本地的apache server 运行地址,你可以改成你自己的server地址。
至此,zendstudio端,xdebug的配置也完成了。
4、测试
在zendstudio中新建php 项目,建议content选择basic类型的,之后一路next就行了。
步骤如下图所示:
打开创建好的index.php,加入如下测试代码,保存文件。
<?php echo "Hello World" ;
echo "This spans multiple lines. The newlines will be output as well" ;
echo "This spans\nmultiple lines. The newlines will be\noutput as well." ;
echo "Escaping characters is done \"Like this\"." ;
?> |
下面开始调试:
第一步,右键单击你刚刚创建好的工程,选择debug as,如下图所示:
出现如下图所示的效果,说明你的xdebug 配置成功。
参考:
史上最简! PHP调试环境搭建-Zend Debugger安装
http://blog.csdn.net/nsrainbow/article/details/2218309
win7+wamp+xdebug+zend studio9.0.3配置说明
http://blog.csdn.net/james521314/article/details/9097025
zend studio配置调试(Xdebug方式)
http://www.cnblogs.com/happyday56/p/3195278.html
ZendStudio调试配置(XDebug)
http://blog.csdn.net/xinzheng_wang/article/details/37930233
WIN7+wampserver2.4+zend stadio10.6.1配置Xdebug
http://www.it165.net/admin/html/201501/4709.html