If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
PHP में goto keyword का use हम Program में किसी दूसरे section पर move करने के लिए करते हैं। Targeted Section को हम label के through define करते हैं और उसी Specified label को goto keyword के साथ target करते हैं।
goto targeted_level; level_name: { //do something here; }
File : goto.php
<?php
goto my_level;
my_level:
{
echo "This is simple goto test";
}
?>
Note - Targeted label same file और same context में होना चाहिए , ऐसा नहीं हो सकता कि आप किसी function के अंदर define किये गए label को function के बाहर Access करें। और न ही For Loop या While Loop को jump कर सकते हैं
See Example :
File : goto2.php
<?php
goto end;
for($i=0; $i<10; $i++)
{
end:
echo 'Not working';
}
?>
तो आप Example में देख सकते हैं कि जब हम For Loop के अंदर define किये गए label को access करते हैं तो PHP Fatal Error Generate करती है।
हालांकि हम For Loop या While Loop के अंदर से बाहर define किये गए labels को आसानी से Access कर सकते हैं।
For Example :
File : goto3.php
<?php
for($i=0; $i<10; $i++)
{
if($i==3)
goto end;
}
end:
echo 'Awesome it works';
?>
One more thing , जब हम For Loop या While Loop के अंदर से बाहर define किये गए labels को Access करते हैं तो जैसे ही goto statement execute होता है तो loop भी break हो जाता है , means हम पूरी तरह से Loop को exit कर देतें हैं।
For Example ऊपर दिए गए example में ही अगर हम $i की value print करें तो ये values तभी तक print होंगी जब तक कि goto statement Executeनहीं हो जाता।
File : goto4.php
<?php
for($i=0; $i<10; $i++)
{
if($i==3)
goto end;
/*printing values*/
echo $i."<br>";
}
end:
echo 'Awesome it works';
?>
I Hope अब आपको PHP में goto के बारे में अच्छे से समझ में आ गया होगा।