PHP-xdebug+PHPStorm的debug安装

Posted QinXiao.Shou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP-xdebug+PHPStorm的debug安装相关的知识,希望对你有一定的参考价值。

 

PHP的xdebug安装

 

一.首先去phpinfo()查看自己的php是32还是64位的,再根据php版本在下面的网站https://xdebug.org/download.php选择xdebug插件下载:下载线程安全的xdebug例如:我的php是5.4版本,x86位的

 

php_xdebug-2.4.0-5.4-vc9.dll

 二.然后把该文件放在:

三.配置php.ini文件,在里面添加以下代码:

还要打开

添加代码:

zend_extension="G:\\amptwo\\php\\ext\\php_xdebug-2.5.4-7.1-vc14-x86_64.dll"
xdebug.profiler_enable=1
xdebug.profiler_output_dir="G:\\debug"
xdebug.remote_enable=1
xdebug.remote_port=9000
xdebug.remote_host="localhost"

 

然后重启Apache

 在去phpInfo查看是否有

 

 没有的话,按照上面的方法换多几个版本

 

PHPStorm的debug安装

 

以上是关于PHP-xdebug+PHPStorm的debug安装的主要内容,如果未能解决你的问题,请参考以下文章

php-xdebug配置使用

phpstudy+phpstorm+debug

phpstorm配置debug(没有x-debug配置)@year12

ero-configuration Web Application Debugging with Xdebug and PhpStorm

phpstorm mac xdebug配置

php-xdebug(安装)