Home >php教程 >php手册 >xdebug的安装资料

xdebug的安装资料

WBOY
WBOYOriginal
2016-06-13 10:52:081090browse

先放几篇收集的资料的链接
Xdebug安装与使用
解决xampp xdebug安装失败
php 安装xdebug
我的测试结果:
以zend_extension的方式没有安装成功,只能按php 安装xdebug 的方法使用:extension=php_xdebug-2.0.5-5.2.dll
这样的方法加载了。

暂时用debugger算了,可惜PHP环境只有用PHP5.2,不能用PHP5.3了。


我xdebug的配置:

[html] 
[Xdebug] 
zend_extension_ts="C:/wamp/bin/php/php5.3.3/ext/php_xdebug.dll" 
xdebug.remote_enable=true 
xdebug.remote_host=127.0.0.1 
xdebug.remote_port=9000 
xdebug.remote_handler=dbgp 
xdebug.profiler_enable=1 
xdebug.profiler_output_dir="E:/test" 

xdebug 是5.3 vc6 ts版的,版本应该没错。但是phpinfo()里没有xdebug;
extension=php_xdebug-2.0.5-5.2.dll 用这个可以加载成功。

有谁知道原因的,麻烦帮助一下。

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP https访问webserviceNext article:php选择排序