Home php教程 php手册 php学习之流程控制实现代码

php学习之流程控制实现代码

Jun 21, 2016 am 08:54 AM
case echo else hour if

复制代码 代码如下:


/*
* 流程控制
*
* 一、顺序结构
* 二、分支结构--条件结构--选择结构
* 1.单路分支
* //条件bool,true或false,> * if(条件)
* 执行下面一条语句
* if(条件)
* {
* 代码段;
* 代码段;
* }
*
* 2.双路分支
* 使用else从句
*
* if(条件)
* 执行一条语句
* else
* 执行一条语句
* if(条件){
* 一条或多条代码
* }else{
* 一条或多条代码
* }
*
* 3.多路分支
* 可以使用 if else if 和 switch case
* //这是一种互斥的关系
* if(条件){
*
* }else if(条件){
* }else if(条件){
* }else{
* }
* 4.嵌套分支
* if(){
* if(){
* }else{
* if(){}
* }
* }
* 三、循环结构
*
*
*
*
*
* 总结:
* 如果是判断一段范围 则使用elseif
* 如果是单个匹配,则使用switch case
*/
//单路执行
$a=10;
$b=5;
if($a > $b)
echo "$a 是大于 $b 的";
//双路执行
$a=10;
$b=20;
if($a>$b)
{
echo "$a 大于 $b";
}
else
{
echo "$a 小于 $b";
}
//多路执行
$hour=date("H");
if($hour > 6 && $hour {
echo "good morning!":
}
else if($hour > 9 && $hour {
echo "上午好";
}
else if($hour > 12 && $hour {
echo "中午好";
}
else if($hour > 14 && $hour {
echo "下午好";
}
else if($hour > 17 && $hour {
echo "傍晚好";
}
else if($hour > 19 && $hour {
echo "晚上好";
}
else
{
echo "夜晚好";
}
//根据互斥性改良代码
$hour=date("H");
if($hour {
echo "good morning!":
}
else if($hour {
echo "上午好";
}
else if($hour {
echo case " Mon":
echo "星期一";
break;"中午好";
}
else if($hour {
echo "下午好";
}
else if($hour > 19)
{
echo "傍晚好";
}
else if($hour {
echo "晚上好";
}
else
{
echo "夜晚好";
}
//判断当天星期
$week=date("D");//获取星期几
switch($week) //switch(变量) 变量只用整型和字符串
{
case "Mon":
echo "星期一";
break;
case "Tue"
echo "星期二";
break;
case "Wed":
echo "星期三";
break;
case "Thu":
echo "星期四";
break;
case "Fri":
echo "星期五";
break;
default:
echo "周末";
}
//嵌套类
$sex=$_GET["sex"];
$age=$_GET["age"];
if($sex=="nan")
{
if($age >= 60)
{
echo "这个$sex 已经退休".($age-60)."年了";
}
else
{
echo "这个男士还在工作,还有".(60-$age)."年才退休";
}
}
else
{
if($age >= 66)
{
echo "这个$sex 已经退休".($age-66)."年了";
}
else
{
echo "这个女士还在工作,还有".(66-$age)."年才退休";
}
}
?>



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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to write if in c language to judge multiple conditions How to write if in c language to judge multiple conditions Mar 25, 2024 pm 03:24 PM

In C language, if statement is usually used to execute a specific block of code based on a single condition. However, multiple conditions can be combined to make a determination using logical operators such as &&, ||, and !. Including using logical AND (&&) to judge multiple conditions, using logical OR (||) to judge at least one condition, using logical NOT (!) to judge the negation of a single condition, as well as nesting if statements and using parentheses to clarify priority.

Five selected Go language open source projects to take you to explore the technology world Five selected Go language open source projects to take you to explore the technology world Jan 30, 2024 am 09:08 AM

In today's era of rapid technological development, programming languages ​​are springing up like mushrooms after a rain. One of the languages ​​that has attracted much attention is the Go language, which is loved by many developers for its simplicity, efficiency, concurrency safety and other features. The Go language is known for its strong ecosystem with many excellent open source projects. This article will introduce five selected Go language open source projects and lead readers to explore the world of Go language open source projects. KubernetesKubernetes is an open source container orchestration engine for automated

Go language development essentials: 5 popular framework recommendations Go language development essentials: 5 popular framework recommendations Mar 24, 2024 pm 01:15 PM

"Go Language Development Essentials: 5 Popular Framework Recommendations" As a fast and efficient programming language, Go language is favored by more and more developers. In order to improve development efficiency and optimize code structure, many developers choose to use frameworks to quickly build applications. In the world of Go language, there are many excellent frameworks to choose from. This article will introduce 5 popular Go language frameworks and provide specific code examples to help readers better understand and use these frameworks. 1.GinGin is a lightweight web framework with fast

Implementing distributed task scheduling using Golang's web framework Echo framework Implementing distributed task scheduling using Golang's web framework Echo framework Jun 24, 2023 am 11:49 AM

With the development of the Internet and the advancement of information technology, the era of big data has arrived, and fields such as data analysis and machine learning have also been widely used. In these fields, task scheduling is an inevitable problem. How to achieve efficient task scheduling is crucial to improving efficiency. In this article, we will introduce how to use Golang's web framework Echo framework to implement distributed task scheduling. 1. Introduction to the Echo framework Echo is a high-performance, scalable, lightweight GoWeb framework. It is based on HTTP

How to use if nested statements in MySQL stored procedures How to use if nested statements in MySQL stored procedures May 26, 2023 pm 12:07 PM

1. Introduction to if statement The if statement is a branching structure statement that performs different operations according to conditions. The if statement usually consists of a conditional expression and one or more statements. If the value of the conditional expression is true, then the statements in the if statement are executed; otherwise, the if statement block is skipped. The syntax of the if statement is as follows: if(condition)thenstatement;elsestatement;endif; where condition is the conditional expression and statement is the SQL statement that needs to be executed. 2. Introduction to if nested statements An if nested statement refers to nesting one or more if statement blocks within an if statement block to perform different operations based on different conditions.

How to use the HOUR function in MySQL How to use the HOUR function in MySQL May 26, 2023 pm 02:22 PM

HOUR(time)SELECTHOUR('11:22:33')SELECTHOUR('2016-01-1611:22:33')->11->11 returns the hour value of the date or time, value range (0-23)

Laravel development: How to implement WebSockets communication using Laravel Echo and Pusher? Laravel development: How to implement WebSockets communication using Laravel Echo and Pusher? Jun 13, 2023 pm 05:01 PM

Laravel is a popular PHP framework that is highly scalable and efficient. It provides many powerful tools and libraries that allow developers to quickly build high-quality web applications. Among them, LaravelEcho and Pusher are two very important tools through which WebSockets communication can be easily implemented. This article will detail how to use these two tools in Laravel applications. What are WebSockets? WebSockets

HMD Skyline gets a new color option and official magnetic case HMD Skyline gets a new color option and official magnetic case Aug 23, 2024 am 07:04 AM

When the HMD Skyline(available on Amazon for $499) was launched last month, it was released in two colors - Neon Pink and Twisted Black. They are now joined by a third color dubbed Blue Topaz. HMD Global has also announced an official case for the ph

See all articles