0

I'm using PhpStorm 2016.3.2 and my problem is it doesn't stop on conditional breakpoints. Normal breakpoints work fine.

Condition I have: $id == 5

Also, if I activate the Checkbox "Log message to console" nothing happens, I don't see any new messages in terminal

Billal Begueradj
  • 20,717
  • 43
  • 112
  • 130
EugenA
  • 323
  • 3
  • 14

2 Answers2

0

I had the same problem with PhpStorm 9 one day.

I solved it by using the xdebug_break function directly. Which in no case is as comfortable as the build in solution. On the next PhpStorm Update it worked for me with no change on my side.

if($id == 5){
    xdebug_break();
}
cb0
  • 8,415
  • 9
  • 52
  • 80
0

Problem solved, I was expecting wrong value in my condition, which never occurs :-)

EugenA
  • 323
  • 3
  • 14