1

I have a variable in my PHP application that changes often, I'd like to debug so that it keeps executing until the variable changes to a specific value (in this case boolean true). I've heard this could be done with expressions? True?

Charles
  • 50,943
  • 13
  • 104
  • 142
Tower
  • 98,741
  • 129
  • 357
  • 507

1 Answers1

1

That's a conditional breakpoint. Set breakpoint in editor by clicking on gutter. Then right-click it and type condition in PHP.

Vladislav Rastrusny
  • 29,378
  • 23
  • 95
  • 156