i'm reading a blog that give something php coding tips.there are two places I don't understand.
less/not use continue.
the structure :
do{ if(true) { break; } if(true) { break; } } while(false);
is better than :
if(true) { } else if(true) { } else { }
can somebody explain why ?