I just got xDebug working with Netbeans and I've noticed that it repeats through the same file over and o开发者_运维知识库ver.
For example if I am debugging a page called index.php it will go through it and then start all over again. The page is never loaded up in the browser...
How can I stop that from happening?
- Set your break where do you want to start inspect (
CTRL+F8
or double click in the line you want to break). a icon break will appear. - Do your debug (
CTRL+F5
). - In Debug Mode click continue (
F5
), it will stop at the line you break (point 1)
精彩评论