phpstorm xdebug 配置 | wniu

phpstorm xdebug 配置

下载xdebug

xdebug
将phpinfo()的源代码复制到文本框中,xdebug会提示如何配置和下载哪个版本的xdebug。

php.ini配置

1
2
3
4
5
6
7
[xdebug]
zend_extension=/usr/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.idekey = PHPSTROM

Chrome xedebug扩展安装

0%