//獲取當前時間的時間戳$time = time();
//獲取某個時間點的時間戳//2011-9-8 3:4:5
echo mktime(3,4,5,9,8,2011);
//設定預設時區date_default_timezone_set("prc");
//日期格式化echo date("y年m月d日 h:m:s");
//microtime — 返回當前 unix 時間戳和微秒數$ms = microtime();
//日曆表
$year = 2017;$month = 3;
$lastmonth = $month-1;
if($lastmonth ==0)$lastmonth = 12;
$firstday = mktime(16,23,0,$month,1,$year); //取所給年月的第一天的unix時間戳
$lastdays = mktime(16,23,0,$lastmonth,1,$year);
$days = date('t',$firstday); //返回指定月份的天數
echo"";
for($i = 1;$i<$days;$i++)
echo"
";echo"";
$week = date("w",$firstday);
$days = date('t',$firstday); //返回指定月份的天數
$nowday = date('t',$lastdays);
$day = mktime(16,23,0,3,23,2017);
echo$day;
echo"";
echo$firstday;
echo"";
echo"";
for($j=1;$j<8;$j++)else
}for($i = 1;$i<($days+$week);$i++)elseelse
}}
php中時間的操作
php中獲取頁面操作時間 獲取開始執行時間 stime microtime true etime microtime true 獲取程式執行結束的時間 total etime stime 計算差值 echo processed in second s php更正相差8小時方法 rpc為中國時間標準 ...
php中的時間處理
轉換為unix時間戳 function gettime d else dateadd interval,number,date 返回已新增指定時間間隔的日期。inetrval為表示要新增的時間間隔字串表示式,例如分或天 number為表示要新增的時間間隔的個數的數值表示式 date表示日期 inte...
php中如何輸出時間 PHP的日期和時間
標籤 unix時間戳 從 unix 紀元 格林威治時間 1970 年 1 月1日 00 00 00 到當前時間的秒數 time 函式返回乙個當前系統的時間戳 mktime 取得乙個日期的 unix 時間戳 1 格式 int mktime 時 分 秒 月 日 年 is dst區 2 注意 is dst...