can I put a for loop in while loop? For example:
while($end = 1)
{
for ($i = 0; $i < count($match); $i++)
{
$mathcas = $match[$i][1];
}
}
Thanks. :)
|
can I put a for loop in while loop? For example:
Thanks. :)
| |||||||
feedback
|
|
While it is perfectly possible, I strongly recommend avoiding the particular construct you are trying... If you find the element you are lloking for, just Edit: and please use | |||||
feedback
|
|
Yes, you can. And now for some padding... Edit: on second thought, if your internal loop does not change the value of $end, you're looking at an infinite loop. | |||||||||
feedback
|
|
yes you can. though in the example you gave the outer while loop will either never end or never run | |||
|
feedback
|