我有多个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次。有可能这样做吗?或者还有其他方法吗?谢谢你的帮助