PHP7安装Xdebug扩展

来自:互联网
时间:2018-10-02
阅读:

测试环境

LNMP 军哥一键包1.3版本

PHP 7.0.7

Xdebug 2.6

配置步骤

根据自身环境执行下列命令进行安装,切记不可原样复制执行

git clone git://github.com/xdebug/xdebug.git
cd xdebug
find / -name phpize
/usr/bin/phpize
find / -name php-config
./configure --enable-xdebug --with-php-config=/usr/local/php/bin/php-config
make 
make install

出现下图提示代表安装成功

开启扩展

find / -name php.ini
vi /usr/local/php/etc/php.ini
添加  extension=xdebug.so
service restart php-fpm

访问phpinfo出现下图提示代表开启成功

<img src="https://ws4.sinAImg.cn/large/006tNbRwly1fgi7rnki31j30sb05m3yr.jpg" "/>

返回顶部
顶部