How to prevent Netbeans 8 from stopping on the first line when debugging a PHP Application
问题 I'm working on a PHP application for a web server in Netbeans 8.0.1. I've installed XAMP/Apache Server/XDebug and can run and debug the application. When I debug the project in Netbeans, the debugger breaks at the beginning of each php file. This is very annoying and interrupts the process of debugging. How can I disable this feature? 回答1: Go to Netbeans -> Tools -> Options -> PHP -> Debugging, and uncheck the 'Stop at First Line' checkbox. 来源: https://stackoverflow.com/questions/28528819/how