php 扩展xdebug的安装及调试

1. xdebug 一定安装与php版本一致的,否则加载会失败。安装的时候查看一下xdebug的安装说明 主要是 --with-php-config=/php安装的bin目录/php-config 要不然找不到安装的php的版本信息。


2. 安装完成后,在php.ini 中增加 zend  扩展,而不是extension

[XDebug]
zend_extension="/home/lyd/download/xdebug-2.1.4/modules/xdebug.so"
xdebug.profiler_enable = on
xdebug.default_enable = on
xdebug.trace_output_dir="/tmp/xdebug"
xdebug.trace_output_name = trace.%c.%p
xdebug.profiler_output_dir="/tmp/xdebug"
xdebug.profiler_output_name="cachegrind.out.%s"
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=tradeadmin
xdebug.remote_port=9002

要保证程序对/tmp/xdebug有写入权限。

3,  重启php-fpm 和web 服务器 ,查看php_info(); 看是否有xdebug的扩展,如果有说明安装成功。

4. 和开发ide集成  ,以netbeans 为例

netbeans 7.0 中 工具=》选项=》php=》调试
端口要和 xdebug.remote_port=9002 设置的一样,

会话ID:  www  (这个很重要,可能看 php_info() xdebug扩展一项中的 xdebug.idekey  选项  默认应该是 www)

5. 在项目源文件中右键配制项目的web属性, 即可。



你可能感兴趣的:(xdebug)