Phpstorm在进入到第一个断点之后无法继续,自动断掉。找了半天原因,原来是PHPSTORM里的php配置不对。
我的PHPSTORM这里PHP language level不支持php7.3选的是7.1 ,CLI interpreter这里选了PHP7.3,所以xdebug一直运行不成功。
PHPSTORM + XDEBUG + PHP-LMLPHP

下面贴出xdebug 配置和PHPSTORM配置:

[xdebug]
zend_extension = "/usr/local/lib/php/pecl/20160303/xdebug.so"
xdebug.remote_enable=On
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey=PHPSTORM

PHPSTORM + XDEBUG + PHP-LMLPHP

PHPSTORM + XDEBUG + PHP-LMLPHP

PHPSTORM + XDEBUG + PHP-LMLPHP

PHPSTORM + XDEBUG + PHP-LMLPHP

04-19 01:18