Launches button to remove any terminated debug sessions from the list During the debugging process for PHP Script PHP Web Page or URL various views will provide the following information
■ Debug View - Here you can control (stop, pause, and resume) the debugging process. You can also decide whether to step into, step over or step return (step out off) certain functions.
■ Variables - Will display the various variables in your script.
■ Breakpoints - Will display the breakpoints you have entered
■ Parameter Stack - Will display the parameters through which functions are reached.
■ Editor Window - Will display the code at the relevant sections, according to which line is selected in the Debug View window.
■ Debug Output - Will show the textual output of the script. This will be updated as the debugging process continues.
■ Browser Output - Will show the output of the script to a browser. This will be updated as the debugging process continues.
■ Console View (External Link) - Displays any error and warning messages.
■ Tasks View (External Link) - Displays tasks that were added to your script (if applicable).
Note:
See 'PHP Debug Perspective' for more on the views that will be displayed during Debugging.
Post a comment