標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2013-10-24 21:08
標題:
if...else if...else 判斷式
<html>
<head>
<title>if...else if...else 判斷式</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<?php
date_default_timezone_set("America/New_York"); //Asia/Taipei America/New_York Pacific/Honolulu Europe/London
echo "現在時刻: ".date("D, F j, Y, H:i:s")."<p/>";
if(date("H")>=5 && date("H")<12)
{
echo "Good Morning!<p/>";
}else if(date("H")>=12 && date("H")<17)
{
echo "Good Afternoon!<p/>";
}else if(date("H")>=17 && date("H")<21)
{
echo "Good Evening!<p/>";
}else
{
echo "Good Night!<p/>";
}
?>
</body>
</html>
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2