1949啦网--小小 痛苦,是因为能力和欲望不匹配造成的

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

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

微信扫码关注

更新实时通知

作者:xialibing 分类:网页教程 浏览: