本文共 851 字,大约阅读时间需要 2 分钟。
好的,所以我自己绊倒了。
首先,20090626 lib是为php 5.3编译的。所以你不能真的使用它。以下是为了能够使用xdebug与php 5.5执行的步骤:
>通过xdebug download页面下载source。
>按照这个guide将源编译成lib。
>所以现在的扩展是在正确的源文件夹:20121212,你需要启用xdebug在你的配置。
>我在ubuntu 12.04,所以接下来的步骤可能不适用于您的系统:
>创建20-xdebug.ini配置并将其复制到/etc/php5/apache/conf.d和/etc/php5/cli/conf.d文件夹(如果您计划在您的cli中使用xdebug)。在其中插入下一行代码:zend_extension = xdebug.so
>在apache2和cli php.ini配置文件中启用xdebug:
xdebug.remote_enable = 1
xdebug.renite_enable = 1
xdebug.max_nesting_level = 1000
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir = '/var/log'
php -v:
PHP 5.5.7-1+sury.org~precise+1 (cli) (built: Dec 12 2013 21:37:40)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2013 Zend Technologies
with Zend OPcache v7.0.3-dev, Copyright (c) 1999-2013, by Zend Technologies
with Xdebug v2.2.3, Copyright (c) 2002-2013, by Derick Rethans
转载地址:http://eqjdv.baihongyu.com/