eclipse for php+Xdebug配置问题

1、安装好Eclipse for PHP 

2、下载Xdebug,地址http://xdebug.org/download.php

下载和PHP版本对应的Xdebug版本,带ts的为线程安全,nts为不安全的

3.把下载的Xdebug动态连接库放到,PHP的ext文件中,如D:\PHP\PHP54\ext

4.配置php.ini文件,在此文件的最后加上如下内容,

[Xdebug]
zend_extension ="D:/PHP/PHP54/ext/php_xdebug-2.2.1-5.4-vc9.dll" (路径根据自己情况设置)

注意:有些文章把此处的zend_extension写成zend_extension_ts这是老版本的配置方式,从PHP5.3对应的Xdebug开始采用前者。

xdebug.auto_trace = On

xdebug.show_exception_trace = On

xdebug.remote_autostart = On

xdebug.remote_enable = On

xdebug.remote_host = 127.0.0.1

xdebug.remote_port = 9000

xdebug.remote_handler = dbgp

xdebug.profiler_enable = on

xdebug.profiler_output_dir="D:/PHP/PHP54/log"  (路径根据自己情况设置)

5.从其apache

6.写一个测试文件test.php

  phpinfo();

?>

网页中看到此信息,说明已经配置成功


7.Eclipse配置xdebug

在eclipse的项目里的Properties里面找到"PHP Debug",在PHP Debugger里面选择"XDebug"

 Break at First Line划勾,默认停在第一行

    

 

    再在Windows->Preferences里面配置下PHP Servers

 

    

 

    

接下来可以测试使用debug了。。。。。

你可能感兴趣的:(学习资料,php,eclipse,extension,zend,properties,exception)