当前位置:网站首页>The method of parsing PHP to jump out of the loop and the difference between continue, break and exit
The method of parsing PHP to jump out of the loop and the difference between continue, break and exit
2022-07-07 14:33:00 【Full stack programmer webmaster】
This article is about PHP The method of jumping out of the loop and continue、break、exit The differences between them are analyzed and introduced in detail , Friends in need of reference
PHP The circular structure in is roughly for loop ,while loop ,do{} while Cycles and foreach Several kinds of circulation , In either cycle , stay PHP There are several ways to jump out of the loop : Code : The code is as follows :
<?php
$i = 1;
while (true) { // It seems that this loop will always execute
if ($i==2) {
// 2 Skip not show
$i++;
continue;
} else if ($i==5) {
// But here $i=5 Just jump out of the cycle
break;
} else {
echo $i . '<br>';
}
$i++;
}
exit;
echo ' No output here ';
?>result :
1 3 4 continuecontinue It is used in the loop structure , The control program abandons this cycle continue Statement and move on to the next loop .continue Itself does not jump out of the loop structure , Just give up this cycle . If in an acyclic structure ( for example if In the sentence ,switch In the sentence ) Use continue, The program will go wrong . For example, in the following paragraph PHP In the code snippet :
The code is as follows :
<?php
for($i = 1;$i <= 100; $i++ ){
if($i % 3 == 0 || $i % 7 == 0){
continue;
}
& #160; else{
echo”$i \n<br/>”;
}
}
?>PHP The function of the code snippet of is to output 100 within , Can neither be 7 It can't be divided 3 Those natural numbers divisible , In the cycle, use if Conditional statements judge numbers that can be divisible , And then execute continue; sentence , It goes directly to the next cycle . The following output statement will not be executed .
breakbreak It is used in the above mentioned cycles and switch Statement . His function is to jump out of the current grammatical structure , Execute the following statement .break Statement can take a parameter n, Indicates the number of layers to jump out of the loop , If you want to jump out of multiple loops , It can be used n To indicate the number of layers to jump out , If there are no parameters, the default is to jump out of the loop . Look at the following example of multiple loop nesting :
The code is as follows :
<?php
for ($i = 1; $i <= 10; $i++) {
for ($i = 1; $i <= 10; $i++) {
for ($j = 1; $j <= 10; $j++) {
$m = $i * $i + $j * $j;
echo”$m \n < br />”;
if ($m < 90 || $m > 190) {
break 2;
}
}
}
}
?>It's used here break 2 Out of the double cycle , You can experiment , take 2 Get rid of , The result is completely different . If you do not use parameters , What jumps out is only this cycle , The first level of loop will continue .
goto goto It's actually just an operator , Like any other language ,PHP Abuse is also discouraged goto, The abuse of goto It will cause the readability of the program to decline seriously .goto The function of is to jump the execution of the program from the current position to any other position ,goto There is no function of the cycle to end in itself , But the function of its jump position makes it can be used as a jump cycle . but PHP5.3 And above versions have stopped on goto Support for , So try to avoid using goto. The following one uses goto Examples of jumping out of a loop
The code is as follows :
for($i = 1000;$i >= 1 ; $i– ){ if( sqrt($i) <= 29){ goto a; } echo “$i”; } a: echo” this is the end”;
The example uses goto To jump out of the loop , This example is used to detect 1000 within , The square root of those numbers is greater than 29. exit exit It is used to end program execution . It can be used anywhere , There is no meaning of jumping out of the loop .exit It can take a parameter , If the argument is a string ,PHP The string will be output directly , If the parameter is integer plastic ( The scope is 0-254), That parameter will be used as the end state .
The code is as follows :
<?php
for($i = 1000;$i >= 1 ; $i– ){
if( sqrt($i) >= 29){
echo”$i \n<br/>”;
}
else{
exit;
}
}
echo” This line will not be exported ”;
?>In the above example, the code runs directly from the loop , This will lead to the following code will not be executed , If it's in a php web Inside the page , Even exit hinder html The code will not be output .
return return Statement is used to end a piece of code , And return a parameter . Can be called from a function , You can also choose from one include() perhaps require() Statement to call , It can also be called in the main program , If it is called in a function, the program will immediately end running and return parameters , If it is include() perhaps require() Statement is called in the file contained by , Program execution will immediately return to the program that called the file , The return value will be taken as include() perhaps require() The return value of . And if it is called in the main program , Then the main program will stop executing immediately
The code is as follows :
<?php
for($i = 1000;$i >= 1 ; $i– ){
if( sqrt($i) >= 29){
echo”$i \n<br/>”;
}
else{
return;
}
}
echo” This line will not be exported ”;
?>The example here and the above use exit The effect is the same .
At the end of the cycle , Jump out naturally Of course, this is the best understanding , When the cycle meets the critical condition of the cycle, it is self exiting . Above is PHP A simple summary of several ways to jump out of the loop .
Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/113261.html Link to the original text :https://javaforall.cn
边栏推荐
- EMQX 5.0 发布:单集群支持 1 亿 MQTT 连接的开源物联网消息服务器
- MicTR01 Tester 振弦采集模塊開發套件使用說明
- The world's first risc-v notebook computer is on pre-sale, which is designed for the meta universe!
- Demis Hassabis谈AlphaFold未来目标
- 【历史上的今天】7 月 7 日:C# 发布;Chrome OS 问世;《仙剑奇侠传》发行
- Data Lake (IX): Iceberg features and data types
- Data connection mode in low code platform (Part 2)
- ARM Cortex-A9,MCIMX6U7CVM08AD 处理器应用
- Simple use of websocket
- 电脑Win7系统桌面图标太大怎么调小
猜你喜欢

UML state diagram

【历史上的今天】7 月 7 日:C# 发布;Chrome OS 问世;《仙剑奇侠传》发行

Codes de non - retour à zéro inversés, codes Manchester et codes Manchester différentiels couramment utilisés pour le codage des signaux numériques

OAuth 2.0 + JWT protect API security

常用數字信號編碼之反向不歸零碼碼、曼徹斯特編碼、差分曼徹斯特編碼

数据湖(九):Iceberg特点详述和数据类型

数据流图,数据字典

Because the employee set the password to "123456", amd stolen 450gb data?

Internal sort - insert sort

Use case diagram
随机推荐
Decrypt the three dimensional design of the game
Differences between cookies and sessions
Data connection mode in low code platform (Part 2)
JS get the current time, month, day, year, and the uniapp location applet opens the map to select the location
Leetcode——344. 反转字符串/541. 反转字符串 II/151. 颠倒字符串中的单词/剑指 Offer 58 - II. 左旋转字符串
半小时『直播连麦搭建』动手实战,大学生技术岗位简历加分项get!
Small game design framework
属性关键字OnDelete,Private,ReadOnly,Required
多商戶商城系統功能拆解01講-產品架構
Horizontal of libsgm_ path_ Interpretation of aggregation program
Substance painter notes: settings for multi display and multi-resolution displays
Arm cortex-a9, mcimx6u7cvm08ad processor application
Hangdian oj2054 a = = B? ???
Reading and understanding of eventbus source code
Beginner JSP
leetcode:648. 单词替换【字典树板子 + 寻找若干前缀中的最短符合前缀】
JS in the browser Base64, URL, blob mutual conversion
STM32CubeMX,68套组件,遵循10条开源协议
PAG experience: complete AE dynamic deployment and launch all platforms in ten minutes!
GAN发明者Ian Goodfellow正式加入DeepMind,任Research Scientist