返回列表 發帖

時間函數

  1. <html>
  2.         <head>
  3.                 <title>時間函數</title>
  4.                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.         </head>
  6.         <body>
  7.         台北時間:
  8.         <?php
  9.             date_default_timezone_set('Asia/Taipei');
  10.                 echo date('D, F j, Y, H:i:s A');
  11.         ?>       
  12.         </body>
  13. </html>
複製代碼

返回列表