欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

xdebug php5.6扩展安装

程序员文章站 2022-05-02 23:18:42
1.下载地址:https://xdebug.org/download.php 选择xdebug 2.5.0rc1source进行下载,将下载文件放入ubuntu目录下。 2.解压配置安装 tar...

1.下载地址:https://xdebug.org/download.php
选择xdebug 2.5.0rc1source进行下载,将下载文件放入ubuntu目录下。
2.解压配置安装

tar -zxvf xdebug-2.5.0rc1.tgz
cd xdebug-2.5.0rc1/
/usr/local/server/php/bin/phpize 
 ./configure --with-php-config=/usr/local/server/php/bin/php-config
make
make install

将zend_extension = /usr/local/server/php/lib/php/extensions/no-debug-non-zts-20131226/xdebug.so添加至php.ini中,重启php-fpm;在扩展中即可查看已经成功添加的扩展模块;

方法综述:利用/usr/local/server/php/bin/php -i >outputphp.txt将php信息输出至txt,复制信息至下面链接中https://xdebug.org/wizard.php,点击output操作命令说明;
添加xdebug配置参数至php.ini中

xdebug.remote_host = 127.0.0.1
xdebug.remote_enable = 1
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.remote_mode = req

由于此处的端口号与 nginx与php-fpm通信端口号重复,所以修改nginx.config与php-fpm.config 中的端口号为9001
3.chorme安装扩展xdebug的扩展助手插件,安装完毕之后, 打开该插件的options, 设置idekey为phpstorm.
4.原文链接:
https://blog.csdn.net/dm_vincent/article/details/44678347