<html>
<body>
<?php
function bre(){
$a;
for($a=0;$a<=5;$a++){
echo $a;
if($a==3)
break;}
}
bre();
?>
</body>
</html>
<html>
<body>
<?php
function con(){
$a;
for($a=0;$a<=5;$a++){
if($a==3)continue;
echo $a;}
}
con();
?>
</body>
</html>
output:-
01245