问题
I cannot debug Laravel via PhpStorm and Xdebug.
When I try to debug a single file via PhpStorm, it works fine, but when I set a breakpoint and try it on the browser, it doesn't work.
PhpStorm waits for incoming connection with ide key and it stops there.
回答1:
The workflow that I've set:
- Use something like Xdebug helper.
- Configure it to use PhpStorm IDE Key.
When you want to debug:
- Activate Xdebug Helper (Mark
Debug
) - Go to PhpStorm and
Run > Start listening for PHP Debug Connections
- Put a breakpoint at your code
- Refresh your page in Chrome (or go to another one, just make a request).
Basically, the Xdebug Helper will be your trigger. If you disable it, PhpStorm no longer will debug your code.
If you don't want to relay on an extension, you can go to your Xdebug config and set:
xdebug.idekey=PHPSTORM
xdebug.remote_autostart=1
And "Start listening for PHP Debug Connections" will be your trigger.
来源:https://stackoverflow.com/questions/29527954/how-to-debug-code-while-using-my-browser-on-phpstorm