• PHP Break
    The break statement can be used to jump out of different kind of loops. Break in For loop The break statement can be used to jump out of a for loop. ExampleGet your own PHP Server Jump out of the loop when $x is 4: for ($x = 0; $x < 10; $x++) { if ($x == 4) { break; } echo "The number is: $x <br>"; } Try it Yourself...
    0 Yorumlar 0 hisse senetleri 5K Views 0 önizleme
Sociallez https://sociallez.com