<p> 本教程是继续上一篇< 搭建Windows下基于Eclipse的PHP开发环境>,所以之前需要安装eclipse,eclipse是IBM公司主持开发的很棒的开发平台,现在版本已经是3.0了。</p><p> 文章地址:</p><p> http://www.openphp.cn/index.php?module=article&id=27</p><p> ・先下载php_dbg.dll,下载地址如下:</p><p> http://dd.cron.ru/dbg/download.php?h=211.23-win32</p><p> ・解压缩,然后找到和你所安装的PHP版本相同的php_dbg.dll-x.x.x,</p><p> 把名字改成php_dbg.dll然后复制php_dbg.dll到你的PHP安装目录下的extensions目录下。</p><p> ・编辑php.ini,查找以下几项,并按下面的设置做更改:</p><p> ; this is to see output while debugging</p><p> implicit_flush = On</p><p> ; 这里检查一下,设置自己的php安装目录下的extensions目录路径</p><p> extension_dir = "c:\php\extensions\</p><p> ; 填加php_dbg.dll的配置项</p><p> extension=php_dbg.dll</p><p> ; 填加DEBUG配置项</p><p> [debugger]</p><p> debugger.enabled = true</p><p> debugger.profiler_enabled = true</p><p> debugger.JIT_host = clienthost</p><p> debugger.JIT_port = 7869</p><p> ・重启Apache。</p><p> ・现在就可以打开eclipse调试一个PHP脚本了,先在菜单栏里选"RUN"下的"Add/Remove Breakpoint"项设置上断点。</p><p> ・点<图1>中的debug按钮右侧小箭头,选Debug as -> PHP Application,</p><p> 会出现一个提示,询问你是否进入Debug视图进行调试,选择“是”,进行Debug视图。</p><img src="/content/uploadfile/200805/2008053117284106.gif" onclick="get_larger(this)" /><图一> <p> ・进来之后一目了然,可以单步调试,右侧是所有的变量监视,爽吧。如<图2> <img src="/content/uploadfile/200805/2008053117284291.gif" onclick="get_larger(this)" /><p> <图二></p>