Table of Contents
PHP流程控制,php流程
PHP - if 语句
PHP - if...else 语句
PHP - if...else if....else 语句
Home php教程 php手册 PHP流程控制,php流程

PHP流程控制,php流程

Jun 13, 2016 am 08:38 AM
process control

PHP流程控制,php流程

PHP - if 语句

if 语句用于仅当指定条件成立时执行代码

语法

if (条件)
{
条件成立时要执行的代码;
}
Copy after login

如果当前时间小于 20,下面的实例将输出 "Have a good day!":

实例

<?php
$t=date("H");
if ($t<"20")
{
echo "Have a good day!";
}
?>
Copy after login

运行

PHP - if...else 语句

在条件成立时执行一块代码,条件不成立时执行另一块代码,请使用 if....else 语句。

语法

if (条件)
{
条件成立时执行的代码;
}
else
{
条件不成立时执行的代码;
}
Copy after login

如果当前时间小于 20,下面的实例将输出 "Have a good day!",否则输出 "Have a good night!":

<?php
$t=date("H");
if ($t<"20")
{
echo "Have a good day!";
}
else
{
echo "Have a good night!";
}
?>
Copy after login

PHP - if...else if....else 语句

在若干条件之一成立时执行一个代码块,请使用 if....else if...else 语句。.

语法

if (条件)
{
if 条件成立时执行的代码;
}
else if (条件)
{
elseif 条件成立时执行的代码;
}
else
{
条件不成立时执行的代码;
}
Copy after login

如果当前时间小于 10,下面的实例将输出 "Have a good morning!",如果当前时间不小于 10 且小于 20,则输出 "Have a good day!",否则输出 "Have a good night!":

<?php
$t=date("H");
if ($t<"10")
{
echo "Have a good morning!";
}
else if ($t<"20")
{
echo "Have a good day!";
}
else
{
echo "Have a good night!";
}
?>
Copy after login

  

原文地址:http://www.manongjc.com/php/php_if_switch.html

相关阅读:

php date_sunrise()根据地点(经度纬度)获取日出时间

php 全球合法时区列表大全

php date_default_timezone_set() 设置日期/时间函数的默认时区

php date_default_timezone_get()获取日期时间函数所使用的默认时区

php checkdate()函数验证日期是否合法(正确)

爬泰山看日出必备 - 泰山日出时间一览表

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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks 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)

What are the common process control structures in Python? What are the common process control structures in Python? Dec 12, 2023 pm 04:31 PM

There are three common process control structures in python, namely sequence structure, selection structure and loop structure. Detailed introduction: 1. Sequential structure, which is the simplest structure in the program. According to the order of the code, it is executed from top to bottom; 2. Selection structure, this structure can be judged according to certain conditions and choose to execute different codes. Blocks, in Python, usually use "if-elif-else" statements to implement selection structures; 3. Loop structures, which can repeatedly execute a piece of code until it stops when a certain condition is met, etc.

What are the golang flow control statements? What are the golang flow control statements? Dec 28, 2022 pm 05:58 PM

Flow control statement: 1. if statement, consisting of a Boolean expression followed by one or more statements; 2. "if...else" statement, the expression in else is executed when the Boolean expression is false; 3. switch Statement, used to perform different actions based on different conditions; 4. select statement; 5. for loop statement, syntax "for k,v := range oldmap{newmap[k]=v}"; 6. Loop control statement break, continue , goto.

What are the common flow control structures in Python? What are the common flow control structures in Python? Jan 20, 2024 am 10:38 AM

There are four common flow control structures in Python, namely sequential structure, conditional structure, loop structure and jump structure. The following will introduce them one by one and provide corresponding code examples. Sequential structure: A sequential structure is a structure in which the program is executed in a predetermined order from top to bottom, without specific keywords or syntax. Sample code: print("This is the sequence structure example 1")print("This is the sequence structure example 2")print("This is the sequence structure example 2")

Must learn! In-depth analysis of commonly used flow control statements in Python Must learn! In-depth analysis of commonly used flow control statements in Python Jan 20, 2024 am 09:37 AM

A must-see for beginners! Analysis of commonly used flow control statements in Python requires specific code examples. Introduction: Python, as a concise and powerful programming language, is easy to learn and suitable for beginners to get started. The flow control statement is the core of programming. By mastering the flow control statement, you can make your program writing more flexible and efficient. This article will give you a detailed analysis of the commonly used flow control statements in Python, along with specific code examples. I hope it will be helpful to your learning. 1. if statement if statement is Pyt

To understand flow control statements in Python, you need to master several situations To understand flow control statements in Python, you need to master several situations Jan 20, 2024 am 08:06 AM

Python is a widely used high-level programming language. It is easy to learn, efficient and flexible, and is deeply loved by developers. In Python, flow control statements are an important part of implementing program logic. This article will introduce commonly used flow control statements in Python and provide code examples to deepen understanding. In Python, common flow control statements include conditional statements and loop statements. Conditional statements execute different code blocks based on the true or false condition and are used to determine and select execution branches. The loop statement is used to repeat

What are the common flow control structures in Python? What are the common flow control structures in Python? Jan 20, 2024 am 10:38 AM

What are the common flow control structures in Python? In Python programming, the flow control structure is a powerful tool used to control the execution sequence and conditional judgment of the program. In Python, common flow control structures include conditional statements, loop statements and exception handling statements. Let's walk through each of these constructs one by one and give concrete code examples. Conditional statement (if statement): Conditional statements are used to execute different blocks of code based on the true or false condition. In Python, the syntax of the if statement is as follows: i

How to use Java language flow control statements How to use Java language flow control statements Jun 09, 2023 pm 08:36 PM

The Java language is a high-level programming language, and its flow control statements are a very important part of programming. In Java, flow control statements can be used to control the execution sequence of the program, determine conditions, and execute a certain code block in a loop to achieve program flexibility and controllability. There are three main types of flow control statements in Java language: sequence structure, selection structure and loop structure. Next, we will introduce the use of these three flow control statements in detail. 1. Sequential structure Sequential structure means that the program is executed sequentially in the order in which the code is written.

An article briefly analyzing process control in Golang An article briefly analyzing process control in Golang Nov 25, 2022 pm 09:07 PM

This article will teach you about Golang and talk about process control in the basics of Go language. I hope it will be helpful to you.

See all articles