PHP methods and examples to implement process control switch

墨辰丷
Release: 2023-03-29 15:20:01
Original
1570 people have browsed it

This article mainly introduces the methods and examples of implementing process control switch in PHP. Interested friends can refer to it. I hope it will be helpful to everyone.

switch allows selection of multiple possible results of a scalar (expression).

Syntax:

switch (expr) { 
  case result1: 
  statement1 
  break; 
  case result2: 
  statement2 
  break; 
  …… 
  default: 
  statement 
}
Copy after login

The system calculates the value of expr and selects the corresponding execution statement below based on the calculation results (result1, result2, etc.). If If all case results are not consistent, the statement in default will be executed.

Example:

<?php 
switch ($x) { 
  case 0: 
  echo "x 等于 0"; 
  break; 
  case 1: 
  echo "x 等于 1"; 
  break; 
  case 2: 
  echo "x 等于 2"; 
  break; 
  default: 
  echo "x 既不等于1和2,也不等于0"; 
} 
?>
Copy after login

Tips

•There can be many Case condition judgment

•The result after the case is not limited to numbers, it can also be characters or other types supported by PHP

•default is not necessary

Summary: the above That’s the entire content of this article, I hope it will be helpful to everyone’s study.

Related recommendations:

php Multi-level classification filtering function

Use PHP to process image file uploads

phpThree ways to generate QR codes

The above is the detailed content of PHP methods and examples to implement process control switch. 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
Popular Tutorials
More>
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!