This question already has an answer here:
- Any way to break if statement in PHP? 21 answers
I have a code like this:
if (true) {
echo 'one ';
/* I need to jump out of this block */
echo 'two ';
}
echo 'three ';
And here is expected result:
one three
How can I do that?
</div>