PHP流程控制,php流程
PHP流程控制,php流程
PHP - if 语句
if 语句用于仅当指定条件成立时执行代码。
语法
if (条件) { 条件成立时要执行的代码; }
如果当前时间小于 20,下面的实例将输出 "Have a good day!":
实例
<?php $t=date("H"); if ($t<"20") { echo "Have a good day!"; } ?>
运行
PHP - if...else 语句
在条件成立时执行一块代码,条件不成立时执行另一块代码,请使用 if....else 语句。
语法
if (条件) { 条件成立时执行的代码; } else { 条件不成立时执行的代码; }
如果当前时间小于 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!"; } ?>
PHP - if...else if....else 语句
在若干条件之一成立时执行一个代码块,请使用 if....else if...else 语句。.
语法
if (条件) { if 条件成立时执行的代码; } else if (条件) { elseif 条件成立时执行的代码; } else { 条件不成立时执行的代码; }
如果当前时间小于 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!"; } ?>
原文地址: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()函数验证日期是否合法(正确)
爬泰山看日出必备 - 泰山日出时间一览表

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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.

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.

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")

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

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? 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

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.

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.
