返回列表 發帖

時間函數

  1. <html>
  2.         <head>
  3.                 <title>時間函數</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");
  9.                 echo "台北時間: ".date("D, F j, Y, H:i:s A");
  10.         ?>
  11.         </body>
  12. </html>
複製代碼

返回列表