php nested continue foreach code example
Example 1: php for next loop step
for ($i = 0; $i < 10; ++$i)
{
echo "I will loop 10 times";
}
Example 2: php continue out of parent loop
continue 2;
for ($i = 0; $i < 10; ++$i)
{
echo "I will loop 10 times";
}
continue 2;