式が true になるまで実行し続けるように PHP スクリプトをデバッグすることは可能ですか?
たとえば、$a がいつ特定の値になるかを知りたいとします。ステップインを押し続けて、変数 $a が値を変更するまで待ちたくありません。
式が true になるまで実行し続けるように PHP スクリプトをデバッグすることは可能ですか?
たとえば、$a がいつ特定の値になるかを知りたいとします。ステップインを押し続けて、変数 $a が値を変更するまで待ちたくありません。
The solution is to set a breakpoint, right click on it and set a condition for it.
However, there are no global breakpoints, you must specify a location for every breakpoint you put. So, if you want to know where a value changes, you can't set any global conditions as they would be too CPU consuming.