我是靠谱客的博主 暴躁啤酒,最近开发中收集的这篇文章主要介绍PHP在eclipse上的调试,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

用xdebug来进行调试。

 

1. 查看php是否线程安全

phpinfo() 中 查看thread safe属性是否是enable。

 

2. 下载xdebug插件

如使用的是xampp,则已经包括了该插件

 

3. 配置php.ini

 

[XDebug]

zend_extension = "D:devxamppphpextphp_xdebug.dll"

xdebug.profiler_append = 0

xdebug.profiler_enable = 1

xdebug.profiler_enable_trigger = 0

xdebug.auto_trace = 1

xdebug.profiler_output_dir = "D:devxampptmp"

xdebug.profiler_output_name = "cachegrind.out.%t-%s"

xdebug.remote_enable = 1

xdebug.remote_handler = "dbgp"

xdebug.remote_host = "local.xxx-china.com"

xdebug.trace_output_dir = "D:devxampptmp"

xdebug.remote_port=9000

 

4. eclipse 配置

打开preference菜单,进入php debug选项,选择调试工具为xdebug。



 

依次配置解释器位置php.exe



 

配置web选项,和path mapping

 

 

 

 

最后

以上就是暴躁啤酒为你收集整理的PHP在eclipse上的调试的全部内容,希望文章能够帮你解决PHP在eclipse上的调试所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部