PHP如何下载对应的XDebug版本
Posted zhuyongzhe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP如何下载对应的XDebug版本相关的知识,希望对你有一定的参考价值。
Xdebug安装地址 https://xdebug.org/download.php
进入下载页面后点击 custom installation instructions
复制phpinfo整个网页内容(Command+A),粘贴到文本框中
提交后,会显示适合安装的Xdebug版本
对PHP的php.ini文件,进行配置
在尾部添加以下代码,去掉#号,并修改正确参数
[xdebug] #zend_extension = C:AppServphp7extphp_xdebug-2.6.1-7.1-vc14.dll #xdebug.profiler_enable = off #xdebug.profiler_enable_trigger = off #xdebug.profiler_output_name = cachegrind.out.%t.%p #xdebug.profiler_output_dir = "c:/AppServ/xdebug_temp" #xdebug.remote_enable=1 #xdebug.remote_host=127.0.0.1 #xdebug.remote_port=9000 #xdebug.remote_handler=dbgp
最后重启WEB服务器,本机是Apache
以上是关于PHP如何下载对应的XDebug版本的主要内容,如果未能解决你的问题,请参考以下文章