0

式が true になるまで実行し続けるように PHP スクリプトをデバッグすることは可能ですか?

たとえば、$a がいつ特定の値になるかを知りたいとします。ステップインを押し続けて、変数 $a が値を変更するまで待ちたくありません。

4

1 に答える 1

0

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.

于 2010-02-21T15:52:12.703 に答える