1. 程式人生 > >PHPstorm 配置xdbug

PHPstorm 配置xdbug

配置 ble 相關信息 cnblogs https color class 安裝 org

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