php for循环如何在else之后重新开始

时间:2013-06-22 15:30:39

标签: loops if-statement

我想做这样的事情。你对此有什么想法吗?

=== a ===

if( Something ){
=== b ===
{
else
{
go back to === a ===
}

Thanks.

2 个答案:

答案 0 :(得分:0)

通常是while循环。

$something = false;
while (!$something) {
    //here are ====a==== actions
}
//here are b actions

答案 1 :(得分:0)

你想要这样的东西:

while (true) {


  if( Something ){
     === b ===
  }
  else
  {
   === a ===
  }
  if (we're done) {
    break;
  }

}

或者,您可以在while循环中使用适当的条件退出。