Eclipse for PHP+PHPStudy断点调试配置
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
一、phpstuday 设置
1. 开启phpstudy集成的xd ebug插件
2.首先查询当前PHP的版本
3.在phpstudy的安装目录,找到当前的php版本所在的路径(D:\phpStudy\php\php-5.
4.45)在php.ini文件最后追加如下信息:
[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配置
1.在Wind ows->Preferences里面配置下PHP Executables
2. 在Wind ows->Preferences里面配置下PHP server
3. 在Wind ows->Preferences里面配置php下的d ebug
4.断点调试
1.在php代码块打上断点
就会进入断点
3.注意此访问地址和phpstudy中的站点配置有关