phpstorm+xdebug 'Break at first line' 在第一行自动断点

配置xdebug的教程不多说,
要想在有请求到达php时,php自动在文件第一行断下来,只需要在php.ini中设置,

[Xdebug]
 zend_extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so
 xdebug.remote_enable=1
 xdebug.remote_host=localhost
 xdebug.remote_port=9000
 xdebug.remote_autostart=1

关键是

xdebug.remote_autostart=1

你可能感兴趣的:(phpstorm+xdebug 'Break at first line' 在第一行自动断点)