码迷,mamicode.com
首页 > 其他好文 > 详细

xdebug的安装测试

时间:2017-12-11 23:02:25      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:post   版本   php -v   profile   支持   高级   ext   error:   output   

1.下载

php -version
PHP 7.2.0 (cli) (built: Dec  7 2017 23:07:46) ( NTS DEBUG )

如果PHP版本是7.2以上的必须要下载Xdebug 2.6.0, 因为Xdebug 2.5.5只支持[5.5.0, 7.2.0)

checking Check for supported PHP versions... configure: error: not supported. Need a PHP version >= 5.5.0 and < 7.2.0 (found 7.2.0)

1.安装和配置

phpize

./configure

make && make install

zend_extension="xdebug.so" (php扩展分两种, 普通的也是我们最常见的extension和比较高级的zend_extension ,注意这个是zend_extension)

这是我php.ini的配置:

zend_extension="xdebug.so"
; xdebug config
xdebug.profiler_enable=on 
xdebug.trace_output_dir="/tmp/xdebug/xdebug_trace"
xdebug.profiler_output_dir="/tmp/xdebug/xdebug_profiler"

xdebug的安装测试

标签:post   版本   php -v   profile   支持   高级   ext   error:   output   

原文地址:http://www.cnblogs.com/wangweiwen/p/8025354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!