Board logo

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

作者: tonyh    時間: 2013-5-30 21:00     標題: 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('Asia/Taipei'); //Asia/Taipei America/New_York Pacific/Honolulu Europe/London
  9.                 switch(date("H"))
  10.                 {
  11.                         case 5:case 6:case 7:case 8:case 9:case 10:case 11:
  12.                                 echo "Good Morning!<p/>";
  13.                                 break;
  14.                         case 12:case 13:case 14:case 15:case 16:
  15.                                 echo "Good Afternoon!<p/>";
  16.                                 break;
  17.                         case 17:case 18:case 19:case 20:
  18.                                 echo "Good Evening!<p/>";
  19.                                 break;
  20.                         default:
  21.                                 echo "Good Night!<p/>";
  22.                 }
  23.                 echo date('D, F j, Y, H:i:s A');
  24.         ?>       
  25.         </body>
  26. </html>
複製代碼





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