1、https://github.com/xdebug/xdebug 根据步骤顺序执行a) 错误一遇到错误 ./rebuild.sh: 3: ./rebuild.sh: phpize: not foundvim ./rebuild.sh将 phpize 替换为全路径 /usr/local/php/v7.1.9/bin/phpize/usr/local/...
1、https://github.com/xdebug/xdebug 根据步骤顺序执行
a) 错误一
遇到错误 ./rebuild.sh: 3: ./rebuild.sh: phpize: not found
vim ./rebuild.sh
将 phpize 替换为全路径 /usr/local/php/v7.1.9/bin/phpize
/usr/local/php/v7.1.9/bin/phpize && ./configure --enable-xdebug-dev && make clean && make -j 5 all && make install
b) 错误二
configure: error: Cannot find php-config. Please use --with-php-config=PATH
添加 --with-php-config=/usr/local/php/v7.1.9/bin/php-config
/usr/local/php/v7.1.9/bin/phpize && ./configure --enable-xdebug-dev --with-php-config=/usr/local/php/v7.1.9/bin/php-config && make clean && make -j 5 all && make install
解决完错误重新执行 sudo ./rebuild.sh
安装完成
2、修改php.ini
[XDebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.remote_enable = 1
xdebug.remote_mode = "req"
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9001
xdebug.idekey="php"
xdebug.remote_autostart = no
zend_extension = /usr/local/php/v7.1.9/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so
xdebug官网:https://xdebug.org/
windows dll 下载地址:https://xdebug.org/download.php
沃梦达教程
本文标题为:ubuntu PHP XDebug
基础教程推荐
猜你喜欢
- laravel ORM关联关系中的 with和whereHas用法 2023-03-02
- PHP中的错误及其处理机制 2023-06-04
- thinkphp3.2.3框架动态切换多数据库的方法分析 2023-03-19
- PHP实现Redis单据锁以及防止并发重复写入 2022-10-12
- php array分组,PHP中array数组的分组排序 2022-08-01
- laravel 解决多库下的DB::transaction()事务失效问题 2023-03-08
- PHP获取MySQL执行sql语句的查询时间方法 2022-11-09
- PHP命名空间简单用法示例 2022-12-01
- 使用PHP开发留言板功能 2023-03-13
- 在Laravel中实现使用AJAX动态刷新部分页面 2023-03-02