PhpSrom安装xdebug
Posted I can do this all day
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PhpSrom安装xdebug相关的知识,希望对你有一定的参考价值。
1.php需要安装xdebug,这样能支持调试。
下载地址:http://www.xdebug.org/download.php,若不清楚下载版本,可将phpinfo的信息复制到下载地址页面的custom installation instructions,即可得知对应的信息。
2.下载后按照提示安装xdebug,然后打开php.ini,修改配置信息,举例如下:
[xdebug]
zend_extension=”D:\\wamp\\php-5.6.2-x64\\ext\\php_xdebug-2.2.5-5.6-vc11-x86_64.dll” (根据提示修改对应的地址)
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_host= localhost
xdebug.remote_port = 9000
xdebug.idekey = PHPSTORM
3.配置PhpStrom,settings->php->Debug->Xdebug->Debug port填写步骤二中的xdebug.remote_port端口;
settings->php->Debug->DBGp Proxy中填写IDE key,Host,Port为apach监听地址(比如80);
4.设置调试:
以上是关于PhpSrom安装xdebug的主要内容,如果未能解决你的问题,请参考以下文章