Home Backend Development PHP Tutorial What is php flow control? Understand the steps to run flow control statements

What is php flow control? Understand the steps to run flow control statements

May 10, 2018 pm 04:16 PM
php learn What control process

What is Flow control: In the declarative programming language, flow control instructions refer to instructions that change the order in which the program runs. It may be to run instructions at different locations, or to select one of two (or multiple) sections to run.

Imperative programming: Command the "machine" how to do things (how), so that no matter what you want (what), it will be implemented according to your command.
Declarative programming: Tell the "machine" what you want (what), and let the machine figure out how to do it (how).

Whether it is PHP or other syntax, a program always consists of several statements.

From the perspective of execution mode, the control structure of statements is divided into the following three types:

1. Sequential structure: Completely sequential execution from the first statement to the last statement;

2. Selection structure: perform several tasks based on user input or the intermediate results of statements;

3. Loop structure: based on a certain condition Simply perform a task repeatedly a number of times, or until the goal is achieved.

There are three control statements in PHP used to implement selection structures and loop structures:

1. Conditional control statements : if, else, elseif and switch;

2. Loop control statements: foreach, while, do...while..and for;

3. Transfer control statements: break, continue and return.

Here are a few small examples for reference

Conditional control statements:

If statement, usage:

 If(E)
 语句块1;
 else
  语句块2;
Copy after login

Analysis: If the return value of E is true, execute statement block 1; otherwise, execute statement block 2.

Example, code:

<?php
 $a = 59;  //根据$a的值,判断是否要妹子。如果>=60则输出要代码
  if($a>=60){
 echo “要妹子”;
}else
  echo “要代码”;
?>
Copy after login

If···elseif···else statement, usage:

if(E)
  echo &#39;要妹子&#39;;;
else if(X)
  echo &#39;不要妹子&#39;;;
else
 echo &#39;要代码&#39;;
Copy after login

Analysis : If E is true, the execution is to ask for a girl. Otherwise, if the value of B is true, then no girl is required; otherwise, the executor requires code. Of course: if statements can also be nested.

The following is an example of If···elseif···else:

 <?php
  $a = 59;
  if($a>=60) //在大于等于60的情况里在进行分类
 {
  if($a==100)
  echo “要妹子”;
  elseif($a>=90)
  echo “睡妹子”;
 else
  echo “睡不起”;
 }
 else
  echo “睡大街吧”;
 ?>
Copy after login

Switch statement, the syntax is as follows:

switch(E)
{
 case val1:
  语句块1;
  Break;
 case val2:
  语句块2;
  Break;
 default:
  语句块3;
 }
Copy after login

When the value in a case statement matches the value of switch expression E, PHP starts executing the statement until the switch program section ends or the first break statement is encountered

(If break is not encountered, PHP will continue to the next case).

break is to end the entire loop body, continue is to end the word loop

The following is an example without break:

 <?php
  switch($leve1)
 {
  case 3:
   echo “高级”;
  case 2:
   echo “中级”;
  case 1:
    echo “初级”;
  default:
    echo “错误的等级值”;
 }
 ?>
Copy after login

The execution result is: Advanced Intermediate Elementary Error Level Value

What do you think of from this? ?

 <?php
  $level = 3;
  switch($level)
 {
  case 3:
   echo “赋予管理员权限”;
  case 2:
 echo “赋予站务权限”;
  case 1:
  echo “赋予版主权限”;
  default:
   echo “赋予普通用户权限”;
 }
 ?>
Copy after login

Compared with if, switch achieves higher efficiency:

 <?php
  $a = 59;
 switch($a)
  {
 case $a == 100;
  echo “满分”;
  break;
 case $a >= 90;
  echo “优秀”;
  break;
 case $a >= 60;
  echo “及格”;
  break;
 default:
  echo “不及格”;
 }
 ?>
Copy after login

So what is the loop statement used for? Of course it is used to perform an operation repeatedly.

While 与do···while 
While的语法: 
While(E)
 语句块;
Copy after login

Analysis: As long as E in the while expression is TRUE, the statement will be executed.

The syntax of do···while:

 do
 {
  语句块;
 }
 while(E)
Copy after login

The difference between do···while and while is that do···while is checked at the end of the loop, regardless of whether the conditions of the loop are met or not. , do···while will be executed once.

For example:

 <?php
  $a = 5; //先判断$a是否大于5,如果大于5则执行。
  while($a>5)
 {
  echo “This is while.”;
  $a–;
 }
 do //先执行do之内的语句,然后进行判断。
 {
  echo “This is do…while.”;
  $a–;
 }
 while($a > 5)
 ?>
Copy after login

For statement, syntax:

 For(A;B;C)
  Statement;
Copy after login

Analysis: The first expression is at the beginning of the loop First execute unconditionally once, usually A is an assignment statement; B is run before the loop starts, if it is TRUE,

will continue to loop and execute the nested statements of the loop; C is executed after the loop, usually Self-increment and self-subtraction operations.

Code:

 <?php
  for($a = 5;$a > 5;$a–);
  echo “This is for”;
 ?>
Copy after login

Foreach statement, used for array traversal, you will learn it later.

Transfer control statements

There are three main types of transfer control statements in PHP: break, continue and return.

1. Break statement

The break statement is used to end the current loop. break can accept an optional numeric parameter to determine how many levels to jump out of. cycle.

Example:

<?php
  $a = 5;
  $b = 10;
 while($a <100) //$a<100开始循环
 {
  echo “a = “.$a.”<BR>”; //输出$a,“.”时连接运算符,相当于java中的“+”
 while($b > 0) //$b>0,开始循环
 {
  echo “b = ” .$b.”<BR>”; //输出$b
  $b–;
  if($b == 3 ) //如果$b==3,则跳出while($b>0)
  break;
 }
  $a++;
  if($a == 30)
  break; //如果$a==30,就跳出while($a<100)
 }
 ?>
Copy after login

Continue statement

Continue is used to jump out of this loop, which is different from break Yes, after continue exits, it will continue to execute the next cycle.

Return statement The Return statement is used to end a function or a script file. If the return statement is called in a function, it will immediately end the execution of the function and return its value as a parameter.

Of course, return can also be used as a function in PHP. Such as return(), and write the parameters to be returned in parentheses. This usage is uncommon.

Attached is a picture for everyone to consider carefully.



The above is the detailed content of What is php flow control? Understand the steps to run flow control statements. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Hot Topics

Java Tutorial
1655
14
PHP Tutorial
1252
29
C# Tutorial
1226
24
Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

See all articles