* 1. Single branch: if(){ }
* 2. Double branch: if(){ }else{ }
* 3. Multiple branches: if()elseif (){}elseif()
* 4. Ternary operator: condition? true : false
* 5.switch structure
//1.Single branch
$grade = 55;
if ($grade < 60){ //单分支
echo '<p style="color:red">很不幸,您得补考</p>';
}//2.Double branch
$grade = 70;
if ($grade < 60){ //双分支
echo '<p style="color:red">很不幸,您得补考</p>';
} else { //$grade >= 60
echo '<p style="color:green">恭喜,及格啦~~</p>';
}//3.Multiple branches
if ($grade < 60){ //多分支
echo '<p style="color:red">很不幸,您得补考</p>';
} else if ($grade>=60 && $grade < 80 ) {
echo '<p>考得不错哦~~</p>';
} else if ($grade>=80 && $grade <= 100){
echo '<p>真TM的是个天才~~</p>';
}//4: Ternary operation: abbreviation mode of double branch
$age = 20; echo $age>=18 ? '<p>已成年,可以浏览本站</p>' : '<p style="color:red">未成年,请自觉离开</p>';
//5:switch: conditional selection operation
$program = 'php';
$program = 'mysql';
$program = 'javascript';
switch (strtolower($program)) {
case 'php':
echo '<p>PHP是全世界最好的编程语言~~</p>';
break;
case 'mysql':
echo '<p>MySQL是全球最流行的免费的关系型数据库管理系统~~</p>';
break;
case 'html':
echo '<p>html是Web开发中用来写网页结构的标记语言</p>';
break;
case 'css':
echo '<p>css是控制页面显示的样式表文件~~</p>';
break;
case 'javascript': //javascript与js走同一分支语句
case 'js':
echo '<p>javascript是全世界最流行的客户端脚本语言~~</p>';
break;
default:
echo '<p>您关心的编程语言,我们后期会有教程上线,请关注哟~~</p>';
break;
}
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

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

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver CS6
Visual web development tools

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.





