PHP Continue

PHP

PHP continue एक कीवर्ड है, जिसका उपयोग looping की यात्रा को बिच में रोकने के लिए किया जाता है, जब यह एक specified कंडीशन तक पहुंच जाता है, और फिर से उस specified कंडीशन को छोड़ के दुबारा से looping की यात्रा शुरु कर देता है।

PHP Continue for loop

Example: 1 Continue for loop
<?php
for ($x = 2; $x <= 20; $x = $x + 3) {
    if ($x == 11) {
        continue;
    }
    echo ("The number is: $x <br> ");
}
?>
Output
The number is: 2
The number is: 5
The number is: 8
The number is: 14
The number is: 17
The number is: 20

Let’s understand Example

  • Initialization:  loop स्टार्ट होने से पहले हमने एक variable बनाया ($x = 2).
  • Condition: फिर हमने उस पर एक कंडीशन लगा दिया ($x<=20).
  • Increment/Decrement: अब हम चाहते है की $x की वैल्यू में 3 से बढ़ोतरी हो, जब भी कोड ब्लाक execute हो looping के दौरान ($x = $x+3).

Result: उपरोक्त उदाहरण में looping शुरु हो जाती अपने गंतव्य तक पहुंचने के लिए यानी 20 तक, लेकिन बीच में यह 11 से टकरा जाती हैं, और जैसे ही 11 से टकराती है वह अगले लाइन पर पहुँच जाती है, और वहा पर फिर से वह continue कीवर्ड से टकरा जाती है। और जैसा को हम जानते है continue कीवर्ड से टकराने वाली integer को continue कीवर्ड छुपा लेता है।
$x=2,
2+3=5,
5+3=8,
8+3=11 (यह प्रिंट नहीं होगा)
11+3=14

Note: PHP break की तरह इसे भी टकराव की जरुरत है बिना टकराए ये कुछ नहीं करेगा, आइए नीचे दिए गए उदाहरण को देखते हैं।
Example: 2 PHP continue for loop
<?php
for ($x = 2; $x <= 15; $x = $x + 3) {
    if ($x == 12) {
        continue;
    }
    echo ("The number is: $x <br> ");
}
?>
Output
The number is: 2
The number is: 5
The number is: 8
The number is: 11
The number is: 14

Continue while loop in PHP

Example: Continue while loop
<?php
$x = 2;
while ($x <= 15) {
    if ($x == 11) {
        continue;
    }
    echo ("The number is: $x <br>");
    $x = $x + 3;
}
?>
Output
The number is: 2
The number is: 5
The number is: 8

continue कीवर्ड को और बिस्तार से जानना चाहते है तो PHP के Official साईट पर जा सकते है https://www.php.net/manual

Note: देसी भाषा में कहे तो continue कीवर्ड एक दलदल जैसी है, आप उसके बगल से जाओ आपको कुछ नहीं होगा पर जैसे ही उससे मिलोगे वह आपको अपने अन्दर ही रह लेगा।
Article By: Brajlal Prasad
Created on: 16 Feb 2023  773  Views
 Print Article
Report Error

If you want to report an error, or any suggestion please send us an email to [email protected]