PHP Debug Perspective
The PHP Debug Perspective can be launched automatically when a Debug session is run. It contains views which allows you to control and monitor the debugging process.
The PHP Debug Perspective contains the following views:
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 View - Will display the various variables in your script.
Breakpoints View - Will display the breakpoints you have entered
Parameter Stack View - Will display the parameters through which functions are reached.
Debug Output View - Will show the textual output of the script. This will be updated as the debugging process continues.
Browser Output View - Will show the output of the script to a browser. This will be updated as the debugging process continues.
Editor - Will display the code at the relevant sections, according to which line is selected in the Debug View window.
Console View - Will display any error and warning messages.
Tasks - If you had added any tasks to your script, these would be displayed here.
Note:
By default, a dialog will appear asking whether you want to open the Debug Perspective when a debugging session is run. To change this behavior, open the Perspectives Preferences dialog by going to Window | Preferences | Run/Debug | Perspectives and select Always, Never or Prompt in the 'Open the associated perspective when launching' category.
|
|
|
Related Links: |
|
|