jimtse
网站页面
pecl install xdebug
Xdebug下载 可以根据自己php版本在官网下载对应的xdebug版本
tar -xvzf xdebug-2.5.5.tgz
cd xdebug-2.5.5
phpize
./configure --enable-xdebug --with-php-config=/opt/homebrew/opt/php@5.6/bin/php-config
make clean
make
make install
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_host= 127.0.0.1
xdebug.remote_port = 9003
xdebug.remote_autostart = On
xdebug.idekey = PHPSTORM
zend_extension="xdebug.so"
;xdebug.start_with_request = Yes
;xdebug.client_port=9003
;xdebug.mode=debug