024 - goto statement ( jump form one point to another)Number : 1
Number : 2
Number : 3
Number : 4
Here is label A.
<?php
// 024 - goto statement ( jump form one point to another)
echo "</br><span class='myheading'>024 - goto statement ( jump form one point to another)</span></br>";
for($a_024 = 1; $a_024 <= 10; $a_024++){
if($a_024 == 5){ // at number 5 , jump to
goto a_a_024;
}
echo "Number : " . $a_024 . "<br>";
}
echo "Hello";
echo " World";
a_a_024: // label defind
echo "Here is label A.";
?>