Steven
Steven

Reputation: 25304

How to end the current loop(but not the whole while statement) in PHP?

in While(),How to skip the following nested statements and execute next loop of the while() statement?

Upvotes: 0

Views: 1020

Answers (1)

Lukman
Lukman

Reputation: 19164

Simply continue;

Read more: http://www.php.net/manual/en/control-structures.continue.php

Upvotes: 4

Related Questions