php debug 安装技巧

前端之家收集整理的这篇文章主要介绍了php debug 安装技巧前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本打算配置ZendDebugger 进行调试,配置了老长时间没配置成功,在PHPinfo看不到ZendDebugger生效,经查发现是PHP5.3的问题,必须先卸载,本文介绍使用xdebug了。

软件安装太简单了,分别执行如下命令:


sudo apt-get install apache2
sudo apt-get install PHP5
sudo apt-get install PHP5-cli
sudo apt-get install PHP5-xdebug

PHP的配置:


PHP.ini在/etc/PHP5/下的几个文件夹里,应该有三个文件夹:apache2、cli、conf.d,我们应该修改apache2和cli 下的PHP.ini. 在conf.d下有一个xdebug.ini文件,记录了xdebug的文件路径。 sudo vi /etc/PHP5/apache2/PHP.ini sudo vi /etc/PHP5/cli/PHP.ini
用超级用户权限分别打开上面说的两个PHP.ini,添加如下代码 [xdebug]
xdebug.remote_enable = 1
xdebug_remote_host = “localhost”
xdebug.remote_port = 9000
xdebug.remote_handler = “dbgp”
zend_extension=/usr/lib/PHP5/20090626+lfs/xdebug.so 重新启动apache:sudo /etc/init.d/apache2 restart 配置eclipse的调试和运行环境 打开eclipse的菜单-[windows]->[preferences] 选择PHP -debug在右面窗口中的PHP debugger中选择xdebug,下面的字符集选择与开发的代码字符集一致,然后应用。 选择PHP executables的窗口右面新建,名称PHP5;excute phth:/usr/bin/PHP5;ini file :/etc/PHP5/apache2/PHP.ini;type:cli;debugger:xdebug。 好了,现在一切顺利,就可以进行断点调试程序了。

原文链接:https://www.f2er.com/php/28018.html

猜你在找的PHP相关文章