合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
## git安装 说明:具体看`README.md`文件 ``` $ git clone https://github.com/xdebug/xdebug.git $ cd xdebug $ yum install autoconf $ ./rebuild.sh ``` 安装 完成 ![mark](http://qiniu.newthink.cc/blog/20180103-163307320.png) ### 4. 找到`php.ini`并编辑 ``` $ vim /etc/php.ini ``` 在下边增加以下内容 ``` [Xdebug] zend_extension=xdebug.so xdebug.idkey="PHPSTORM" xdebug.remote_enable=1 xdebug.remote_connect_back=0 xdebug.remote_port=8888 ``` >说明:注意一下你的`so`文件存放的位置,一定要找正确位置才能正常使用!7777端口是我自定义的,你可以自己随便改一个没有被使用过的!当然这里如果修改后,看其他的话,端口修改成你对应的就可以了! ### 5. 重新启动`nginx` ``` service nginx reload killall php-fpm /etc/init.d/php-fpm start ``` ### 6. 测试`xdebug`是否运行 ``` <?php phpinfo() ?> ``` ![mark](http://qiniu.newthink.cc/blog/20180103-170912884.png) ### 7. 或者 `php-v`测试 ![mark](http://qiniu.newthink.cc/blog/20180103-164159619.png) ## 注意 有时候调试调试着,不成功,重新启动一下服务器!