这篇文章主要介绍ubuntu PHP XDebug的示例分析,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
天坛街道ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!
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的示例分析”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!