php:在n值未知的情况下迭代foreach n-1次

时间:2015-05-07 11:01:56

标签: php foreach

我有多个foreach循环:

foreach($result as $index1 => $value1)
{
   //count the length of array $value1. That is n value.

   //iterate through the loop n-1 times  
   foreach($value1 as $index2 => $value2)
   {
      //do something
      foreach(...) { }
   }
}

这里我想要运行第二次foreach循环n-1次。有可能这样做吗?或者还有其他方法吗?谢谢你的帮助

0 个答案:

没有答案