首页 > 代码库 > PHPstorm 配置xdbug

PHPstorm 配置xdbug

1、下载xdebug模块

xdebug下载地址:https://xdebug.org/download.PHP

注意:带"ts"是线程安全的意思,"nts"的他没有标示,也就是说,如果是nts的要下载没标示的,下载下来的文件名其实是有标示的。

  Wampserver里面是有相应模块的:bin\php\php5.6.25\zend_ext。

2、把xdebug安装到php

把下载的dll拷贝到php里面的ext文件夹里(扩展dll都在这里),改名为php_xdebug.dll。

在php.ini里修改(在“; Module Settings ;”下面添加):

[xdebug]  
zend_extension=php_xdebug.dll  
xdebug.remote_enable = On  
xdebug.remote_handler = dbgp     
xdebug.remote_host= localhost  
xdebug.remote_port = 9000  
xdebug.idekey = PHPSTORM  

在phpinfo页面查看,会有xdebug的相关信息,表示已经配置好php了!

技术分享

3、配置phpstorm

技术分享

技术分享

 

技术分享

 

 技术分享

 4.谷歌浏览器还需要安装扩展

JetBrains IDE Support。

 技术分享

 

 技术分享

 

PHPstorm 配置xdbug