Board logo

標題: switch 判斷式 [打印本頁]

作者: tonyh    時間: 2013-10-24 21:25     標題: switch 判斷式

  1. <html>
  2.         <head>
  3.                 <title>switch 判斷式</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.                 switch(date("H"))
  11.                 {
  12.                         case 5:
  13.                         case 6:
  14.                         case 7:
  15.                         case 8:
  16.                         case 9:
  17.                         case 10:
  18.                         case 11:
  19.                                 echo "Good Morning!<p/>";
  20.                                 break;
  21.                         case 12:
  22.                         case 13:
  23.                         case 14:
  24.                         case 15:
  25.                         case 16:
  26.                                 echo "Good Afternoon!<p/>";
  27.                             break;
  28.                         case 17:
  29.                         case 18:
  30.                         case 19:
  31.                         case 20:
  32.                                 echo "Good Evening!<p/>";
  33.                                 break;
  34.                     default:
  35.                                 echo "Good Night!<p/>";
  36.                 }               
  37.         ?>
  38.         </body>
  39. </html>
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2