IntelliJ 配置 xDebug PHP

1.

去http://xdebug.org/ ,根据php版本下载相应xdebug

在php.ini末尾追加(修改相应配置)

zend_extension=c:\php56\ext\php_xdebug-2.2.6-5.6-vc11-x86_64.dll  
xdebug.profiler_enable=on  
xdebug.auto_trace=on  
xdebug.collect_params=on  
xdebug.collect_return=on  
xdebug.show_exception_trace = On  
xdebug.remote_autostart = On  
xdebug.remote_enable = On  
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.collect_vars = On



重启Apache 

2. 配置Intellij

IntelliJ 配置 xDebug PHP_第1张图片

-----------

IntelliJ 配置 xDebug PHP_第2张图片

IntelliJ 配置 xDebug PHP_第3张图片


-------------

IntelliJ 配置 xDebug PHP_第4张图片

你可能感兴趣的:(IntelliJ 配置 xDebug PHP)