Home > php教程 > php手册 > body text

PHP控制语句之If...Else

WBOY
Release: 2016-06-13 11:01:51
Original
1008 people have browsed it

If、elseif 以及 else 语句用于执行基于不同条件的不同动作。

条件语句

当您编写代码时,您常常需要为不同的判断执行不同的动作。您可以在代码中使用条件语句来完成此任务。

if...else 语句
 
在条件成立时执行一块代码,条件不成立时执行另一块代码

elseif 语句

与 if...else 配合使用,在若干条件之一成立时执行一个代码块

If...Else 语句

如果您希望在某个条件成立时执行一些代码,在条件不成立时执行另一些代码,请使用 if....else 语句。

语法

if (condition)  code to be executed if condition is true;else  code to be executed if condition is false; 
Copy after login

实例

如果当前日期是周五,下面的代码将输出 "Have a nice weekend!",否则会输出 "Have a nice day!":

<?php$d=date("D");if ($d=="Fri")  {  echo "Hello!<br>";   echo "Have a nice weekend!";  echo "See you on Monday!";  }?>
Copy after login

ElseIf 语句

如果希望在多个条件之一成立时执行代码,请使用 elseif 语句:

语法

if (condition)  code to be executed if condition is true;elseif (condition)  code to be executed if condition is true;else  code to be executed if condition is false; 
Copy after login

实例

如果当前日期是周五,下面的例子会输出 "Have a nice weekend!",如果是周日,则输出 "Have a nice Sunday!",否则输出 "Have a nice day!":

<?php$d=date("D");if ($d=="Fri")  echo "Have a nice weekend!"; elseif ($d=="Sun")  echo "Have a nice Sunday!"; else  echo "Have a nice day!"; ?>
Copy after login


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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template