返回列表 發帖

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.             case 5;    //分號也是可以執行
  11.             case 6;
  12.             case 7;
  13.             case 8;
  14.             case 9:
  15.             case 10:
  16.             case 11:
  17.                 echo "Good Morning!<p/>";
  18.                 break;
  19.             case 12:
  20.             case 13:
  21.             case 14:
  22.             case 15:
  23.             case 16:
  24.                 echo "Good Afternoon!<p/>";
  25.                 break;
  26.             case 17:
  27.             case 18:
  28.             case 19:
  29.             case 20:
  30.                 echo "Good Evening!<p/>";
  31.                 break;
  32.             default:
  33.                 echo "Good Night!<p/>";
  34.         endswitch;
  35.         echo date('D, F j, Y, H:i:s A');
  36.     ?>     
  37.     </body>
  38. </html>
複製代碼
May

返回列表