Answers for "explain break and continue statement with syntax and example. php"

PHP
0

continue in php

<?php
for($i=0;$i<4;$i++)
{
    if($i==3)
    {
        continue;   
    }
    echo $i;
}
?>
Posted by: Guest on January-05-2022

Code answers related to "explain break and continue statement with syntax and example. php"

Browse Popular Code Answers by Language