返回列表 發帖

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('Asia/Taipei'); //Asia/Taipei America/New_York Pacific/Honolulu Europe/London
  9.                 if(date("H")>=5 && date("H")<12)
  10.                 {
  11.                         echo "Good Morning!<p/>";
  12.                 }else if(date("H")>=12 && date("H")<17)
  13.                 {
  14.                         echo "Good Afternoon!<p/>";
  15.                 }else if(date("H")>=17 && date("H")<21)
  16.                 {
  17.                         echo "Good Evening!<p/>";
  18.                 }else
  19.                 {
  20.                         echo "Good Night!<p/>";
  21.                 }
  22.                 echo date('D, F j, Y, H:i:s A');
  23.         ?>       
  24.         </body>
  25. </html>
複製代碼

返回列表