Detailed explanation of the usage examples of PHP flow control statements

伊谢尔伦
Release: 2023-03-11 06:32:01
Original
1383 people have browsed it

if (including if..elseif..else extended examples) Conditional statement, execute the corresponding statement according to the given conditions, is a basic statement

Copy after login

while Loop statement, loop specified according to the satisfied condition statement until the condition is not met

do..while loop statement is basically the same as the while loop statement. The difference is that the do..while statement first executes the specified statement once and then makes a judgment

for Loop statement, loops according to the given conditions until the conditions are not met, providing a more complex loop mechanism

"; } ?>
Copy after login

foreachLoop statement, good at processing arrays, extracting each unit keys and values until the end of the array

"ASP 部门","5人"=>"VB 部门","6人"=>"PHP 部门","8人"=>"Java 部门"); foreach($book as $value){ echo "$value
"; } foreach($book as $key=>$value){ echo "$key=>$value
"; } ?>
Copy after login

switch Conditional statements, switch statements are executed line by line. No code is executed at the beginning. Only when the value in a case statement and switchexpression When the value ofmatches, PHP will start executing the statement until the switch program section ends or the first break statement is encountered. If break is not written at the end of the case statement section, PHP will continue to execute the next case. Statement segment.

"; break; default : echo "用户名错误 
"; break; } switch($_POST['pwd']){ case $password : $p = true; break; case '' : echo "密码不能为空
"; break; default : echo "密码错误
"; break; } if(isset($u,$p)){ echo "登录成功"; } ?>
Copy after login
";break; case 1:echo "星期一
";break; case 2:echo "星期二
";break; case 3:echo "星期三
";break; case 4:echo "星期四
";break; case 5:echo "星期五
";break; case 6:echo "星期六
";break; } ?>
Copy after login

The above is the detailed content of Detailed explanation of the usage examples of PHP flow control statements. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!