samedi 25 juin 2016

How can I jump out of the if statement block?

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?

Aucun commentaire:

Enregistrer un commentaire