"PHPStudy+Eclipse断点调试设置方法"
本文将详细介绍如何在 PHPStudy 和 Eclipse 环境下设置断点调试,旨在帮助开发者更好地 debug PHP 代码。
PHPStudy 设置
在 PHPStudy 中,我们需要启用 XDebug 插件,以下是设置步骤:
1. 需要查询当前 PHP 的版本,这将有助于我们找到正确的 php.ini 文件。
2. 在 phpstudy 的安装目录下,找到当前 PHP 版本所在的路径,例如 D:\phpStudy\php\php-5.4.45。
3. 在 php.ini 文件最后追加以下信息,以启用 XDebug:
```
[XDebug]
;开启自动跟踪
xdebug.auto_trace = On
;开启异常跟踪
xdebug.show_exception_trace = On
;开启远程调试自动启动
xdebug.remote_autostart = On
;开启远程调试
xdebug.remote_enable = On
;收集变量
xdebug.collect_vars = On
;收集返回值
xdebug.collect_return = On
;收集参数
xdebug.collect_params = On
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\php\php-5.4.45\ext\php_xdebug.dll"
xdebug.remote_port = 9000
xdebug.remote_mode = "req"
xdebug.idekey = PHPSTORM
```
Eclipse 配置
在 Eclipse 中,我们需要配置 PHP Executables、PHP Server 和 Debug 设置,以下是设置步骤:
1. 在 Windows->Preferences 里面配置下 PHP Executables,选择正确的 PHP 版本。
2. 在 Windows->Preferences 里面配置下 PHP Server,选择正确的 PHP Server。
3. 在 Windows->Preferences 里面配置 php 下的 Debug,选择正确的 Debug 配置。
断点调试
现在,我们可以开始断点调试了。以下是步骤:
1. 在 PHP 代码块打上断点。
2. 在浏览器输入要访问的地址就会进入断点。
3. 注意此访问地址和 PHPStudy 中的站点配置有关。
本文已经详细介绍了如何在 PHPStudy 和 Eclipse 环境下设置断点调试,旨在帮助开发者更好地 debug PHP 代码。