I am running a PHP CLI application.
If I set a breakpoint, xdebug stops at it. if I write xdebug_break();, it also stops.
Can I stop it if the application throws an exception?
My ini file:
php -i | grep php.ini Uploaded configuration file => /etc/php5/cli/php.ini
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
source
share