PHP continue
एक कीवर्ड है, जिसका उपयोग looping की यात्रा को बिच में रोकने के लिए किया जाता है, जब यह एक specified कंडीशन तक पहुंच जाता है, और फिर से उस specified कंडीशन को छोड़ के दुबारा से looping की यात्रा शुरु कर देता है।
PHP Continue for loop
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
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
The number is: 2
The number is: 5
The number is: 8
continue कीवर्ड को और बिस्तार से जानना चाहते है तो PHP के Official साईट पर जा सकते है https://www.php.net/manual