1. 程式人生 > >php時間戳 輸出當前時間和星期

php時間戳 輸出當前時間和星期

<?php
 header("Content-Type: text/html; charset=utf-8");
 
 $a=1396078883;
 date_default_timezone_set("Asia/Shanghai");
 echo date("Y/m/d----H:i:s");
 
 echo "<br>";
 
 echo "今天是 ".date("l");
?>