


1. Sequence control:
By default, a simple sequence is executed from left to right and top to bottom. Uncontrolled process.
2. Branch control:
Single branch, double branch, multiple branches;
Single branch syntax:
$age=17; if ($age<18) { echo "未满十八岁未成年"; }
Double branch syntax:
$age=24; if ($age<18) { echo "未满十八岁未成年"; } else { echo "您已满十八岁符合标准"; }
Multiple branches Grammar: (elseif can have multiple elses or none. switch statement can also be used for multi-branch judgment)
if ($age<18) { echo "未满十八岁未成年不符合标准"; } elseif ($age>60) { echo "超过六十岁不符合标准"; } else { echo "花好年华!"; }
switch is also a common usage of multi-branch statements. Note:
Each case must be followed by a break interrupt switch, and the default is optional depending on the needs. The location of the default has no impact on the execution result. First, it is executed in the order of the cases, and the default content is executed when none of them match. Write the condition expression in the switch, and the constant after the case (decimals are also acceptable).
$day="1"; switch ($day) { case '1': echo "今天星期一"; break; case '2': echo "今天星期二"; break; case '3': echo "今天星期三"; break; default: echo "地球还在转但是不知星期几"; break; }
Analysis of usage scenarios of if and switch:
if is a judgment on a certain range, while switch is a judgment on a point, when the branch is several points (such as judging the direction of a tank , gender), you should use switch. If the branch is a judgment of several areas (range), consider using if. switch is more efficient.
三、loopControl:
for loop,while,do while
//for循环 for ($i=0; $i < 18; $i++) { echo "<br/>GoodGoodStudy"; }
//while $i=0;//循环控制变量 while ($i<10) { echo "<br/>你好长沙"; $i++;//这里对循环控制变量自增 }
//do while $i=0;//循环控制变量 do { echo "<br/>你好长沙"; $i++; } while($i<10);
Printing half of the pyramid exercise:
//金字塔的一半 for ($i=0; $i < 5; $i++) {//外层循环控制层数 for ($j=0; $j <= $i; $j++) { //内层循环控制每层个数 echo "*"; } echo "<br/>"; }
//金字塔 for ($i=0; $i <= 5; $i++) { for ($k=0; $k < 5-$i; $k++) {//打*前打空格 echo " "; } for ($j=0; $j<($i-1)*2+1; $j++) {//每行多少*的规律:($i-1)*2-1 echo "*"; } echo "<br/>"; }
//空心金字塔 $n=5; for ($i=1; $i <= $n; $i++) { for ($k=1; $k <= $n-$i; $k++) {//打*前打空格 echo " "; } for ($j=1; $j<=($i-1)*2+1; $j++) {//每行多少*的规律:($i-1)*2-1 if ($i==1 || $i==$n) { echo "*"; } else { if ($j==1 || $j==($i-1)*2+1) { echo "*"; } else { echo " "; } } } echo "<br/>"; }
##Calculator Exercise:
<!DOCTYPE html> <html> <head> <title>我的计算器</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> </head> <body> <form action="CalResult.php" method="post"> <table width="300px" border="0"> <tr> <td>第一个数</td> <td><input type="text" name="number1"></td> </tr> <tr> <td>第二个数</td> <td><input type="text" name="number2"></td> </tr> <tr> <td>运算符</td> <td> <select name="oper"> <option value="+">+</option> <option value="-">-</option> <option value="*">*</option> <option value="/">/ </option> </select> </td> </tr> <tr> <td colspan="2"><input type="submit" value="计算结果"></td> </tr> </table> </form> </body> </html>
Calculation result:
<?php //接收用户从Calculator.php(对应静态页面 浏览器)提交的数据 //1、接收number1 number2 ;REQUEST方法可以接收用户的post或者get请求数据 $number1=$_REQUEST['number1']; $number2=$_REQUEST['number2']; //接收运算符 $oper=$_REQUEST['oper']; $res=0; switch ($oper) { case '+': $res=$number1+$number2; break; case '-': $res=$number1-$number2; break; case '*': $res=$number1*$number2; break; case '/': $res=$number1/$number2; break; default: echo "运算符不正确"; break; } echo "运算结果是:".$res; ?> <a href="Calculator.php">返回计算器页面</a>
The above is the detailed content of Learn the three major process controls of PHP through classic examples. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version
Chinese version, very easy to use
