返回列表 發帖

if...else 判斷式

  1. <html>
  2.         <head>
  3.                 <title>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")>=6 && date("H")<18)
  11.                 {
  12.                         echo "歡迎光臨!<p/>";
  13.                 }else
  14.                 {
  15.                         echo "明天請早!<p/>";
  16.                 }       
  17.         ?>
  18.         </body>
  19. </html>
複製代碼

返回列表