• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP if else 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
$t=date("H");
11
if ($t<"10"){
12
    echo "Have a good morning!";
13
}elseif ($t<"20"){
14
    echo "Have a good day!";
15
}else{
16
    echo "Have a good night!";
17
}
18
?>
19
​
20
</body>
21
​
22
</html>

© 2023 自学教程   runoops.com All Rights Reserved. 备案号:闽ICP备19010956号-1