返回列表 發帖

if...else if...else 判斷式

  1. <html>
  2.         <head>
  3.                 <title>if...else if...else 判斷式</title>
  4.                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5.         </head>
  6.         <body>
  7.         <?php
  8.                 date_default_timezone_set("America/New_York"); //Asia/Taipei America/New_York Pacific/Honolulu Europe/London
  9.                 echo "現在時刻: ".date("D, F j, Y, H:i:s")."<p/>";
  10.                 if(date("H")>=5 && date("H")<12)
  11.                 {
  12.                         echo "Good Morning!<p/>";
  13.                 }else if(date("H")>=12 && date("H")<17)
  14.                 {
  15.                         echo "Good Afternoon!<p/>";
  16.                 }else if(date("H")>=17 && date("H")<21)
  17.                 {
  18.                         echo "Good Evening!<p/>";
  19.                 }else
  20.                 {
  21.                         echo "Good Night!<p/>";
  22.                 }       
  23.         ?>
  24.         </body>
  25. </html>
複製代碼

返回列表