php調試工具 xdebug的安裝 和phpstorm的配置

1.下載xdebug,找到php對應的版本,php5.3之前的的後要接_ts,如zend_extension_tsphp

http://www.xdebug.org/download.phpchrome

在c盤windows下找到php.ini,再後加入windows

zend_extension_ts="E:/php5/ext/php_xdebug-2.2.3-5.2-vc9.dll"//這裏是上一步下載的動態連接庫的存放路徑 建議使用絕對路徑
xdebug.remote_enable=1//是否容許遠程終端 這裏標示開啓
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000//這裏表示服務器的監聽端口
xdebug.idekey="PHPSTORM";//這裏是調試器的關鍵字 在Chrome以及FireFox中插件配置的
 
cd命令行裏查看是否安裝成功php.exe -m
 
2.  File>Settings>PHP 選擇Interpreter   

PHP home:選擇自行安裝的服務器

PHP Debugger:下拉框中選擇 Xdebug ide

 

3.進入File>Settings>PHP>Debug spa

 Debug port:插件

這裏設置爲9000 命令行

與服務器端配置相同 debug

xdebug.remote_port=9000 調試

 

4.進入File>Setting>PHP>Debug>DBGp Proxy  

IDE key: PHPSTORM 

Host:localhost 

Port:80 

PHPStorm

5. chrome下載

xdebug helper

相關文章
相關標籤/搜索