'?' only honored once in a loop

Things you’d like to miss in the future...
Post Reply
Malarki
Posts: 109
Joined: 03 Dec 2019 02:51

'?' only honored once in a loop

Post by Malarki »

Seems like a bug... The script stopper '?' is only honored the first time through a loop.

Code: Select all

while ($i < 5) {
 $i++;
 ? $b=0;
 }
This stops the first time through, popping the script debug window; but not again on following passes. Seems like it should stop every time, which is the action I was looking for.

admin
Site Admin
Posts: 60567
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: '?' only honored once in a loop

Post by admin »

I agree. Fix comes.

Post Reply