11
2018
08

PHP if语句

if语句

  if 结构是很多语言包括PHP在内最重要的特性之一,它允许按照条件执行代码片段

if (条件) {

  当条件为 true 时执行的代码;

}

if (条件) {

  条件为 true 时执行的代码;

} else {

  条件为 false 时执行的代码;

}

if (条件) {

  条件为 true 时执行的代码;

} elseif (条件) {

  条件为 true 时执行的代码;

} else {

  条件为 false 时执行的代码;

}

<?php

$t=date("H");

if ($t<"10") {

  echo "Have a good morning!";

} elseif ($t<"20") {

  echo "Have a good day!";

} else {

  echo "Have a good night!";

}

?>

原文链接:https://www.qiquanji.com/post/8887.html

本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。

gzh

微信扫码关注

更新实时通知

« 上一篇 下一篇 »

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。