PhpStorm 6.0.1 Web Help

Run | View Breakpoints

debug_view_breakpoints

Run | View Breakpoints

debug_view_breakpoints

In this section:

Toolbar

ItemTooltip and shortcutDescription
addAdd Breakpoint
Alt+InsertAlt+InsertAlt+InsertAlt+InsertAlt+InsertCtrl+N or Alt+InsertAlt+InsertAlt+InsertControl N or Control EnterControl N or Control EnterMeta N or Control Enter
Click to show the list of available breakpoint types. Select the desired type to create a new breakpoint.
deleteRemove BreakpointClick this button to remove selected breakpoints.
Group by FileSelect this check box to display breakpoints under their respective files:

Breakpoint options

OptionDescription
SuspendSelect this check box to suspend program when a breakpoint is hit. If the check box is not selected, the program is not suspended.
ConditionSelect this check box and specify a condition for hitting a breakpoint in the text field.

A condition is a Boolean expression.

This expression should be valid at the line where the breakpoint is set, and is evaluated every time the breakpoint is reached.If the evaluation result is true, user-selected actions are performed.

If evaluation result is true, user-selected actions are performed.

If the result is false, the breakpoint does not produce any effect. If the Debugger cannot evaluate the expression, it displays the Condition evaluation error message. You can select whether you would like to stop at this breakpoint or ignore it.

ActionsIn this section, select the check boxes to define the action to be performed on hitting a breakpoint:
ActionType of breakpointDescription
Log message to consoleAll types Select this check box if you want a log message to be displayed in the console output when the breakpoint is hit.
Log evaluated expressionLine breakpointsSelect this check box if you wish to evaluate a certain expression at this breakpoint and to export result to the console output.

Tip

If the expression to be evaluated is incorrect when a particular breakpoint is reached, the console output displays an error message: Unable to evaluate expression <your_expression>.

TemporaryAll typesA temporary breakpoint stops the program just once, and is then removed.

See Also

Concepts:

Procedures:

Web Resources: