in While()
,How to skip the following nested statements and execute next loop of the while()
statement?
views:
67answers:
1
+4
A:
Simply continue;
Read more: http://www.php.net/manual/en/control-structures.continue.php
Lukman
2009-12-17 03:42:58
And if you want to stop a while loop, use break!http://www.php.net/manual/en/control-structures.break.php
Kevin
2009-12-17 03:46:44