PHP·98 questionsWhat loops are available in PHP?SaveUpdated: 2026-08-31Answer•for ($i = 0; $i < 10; $i++).•while (condition).•do...while — at least 1 iteration.•foreach ($arr as $key => $val).•break — exit, continue — next iteration.Ask AI to clarifyWas this answer helpful?HelpfulNot helpfulSuggest an improvement