phpStudy中Xdebug设置 phpStorm设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phpStudy中Xdebug设置 phpStorm设置相关的知识,希望对你有一定的参考价值。
在windows系统使用phpstduy集成环境,PHP版本为7.0.1,参考网上文章配置后,在phpinof()中没有xdebug信息, 解决方法,拷贝widzrd.php中提示的文件路径,重启phpstudy后,终于有了xdebug。
1.查看php信息, 在Dos窗口中输入 php -i >> d:\phpinfo.txt , 然后把d:\phpinfo.txt中的信息,粘贴到https://xdebug.org/wizard.php网页中,自动判断下载版本。
2.参考网页信息,在php.ini中增加说明。(重点:zend_extension )
[Xdebug] xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir ="D:\phpStudy\debuginfo" xdebug.trace_output_dir ="D:\phpStudy\debuginfo" xdebug.profiler_output_name = "cachegrind.out.%t.%p" xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = "127.0.0.1" xdebug.remote_port = 9000 zend_extension="D:\phpStudy\php70n\ext\php_xdebug-2.5.0-7.0-vc14-nts.dll"
以上是关于phpStudy中Xdebug设置 phpStorm设置的主要内容,如果未能解决你的问题,请参考以下文章
[php] phpStudy+PhpStorm+XDebug配置