程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 動態網頁制作技術PHP處理時間的實例

動態網頁制作技術PHP處理時間的實例

編輯:關於PHP編程

<?
/**
* 轉換為UNIX時間戳
*/
function gettime($d) {
if(is_numeric($d))
return $d;
else {
if(! is_string($d)) return 0;
if(ereg(":",$d)) {
$buf = split(" ",$d);
$year = split("[-/]",$buf[0]);
$hour = split(":",$buf[1]);
if(eregi("pm",$buf[2]))
$hour[0] = 12;
return mktime($hour[0],$hour[1],$hour[2],$year[1],$year[2],$year[0]);
}else {
$year = split("[-/]",$d);
return mktime(0,0,0,$year[1],$year[2],$year[0]);
}
}
}

/**
*
* DateAdd(interval,number,date)
* 返回已添加指定時間間隔的日期。
* Inetrval為表示要添加的時間間隔字符串表達式,例如分或天
* number為表示要添加的時間間隔的個數的數值表達式
* Date表示日期
*
* Interval(時間間隔字符串表達式)可以是以下任意值:
* yyyy year年
* q Quarter季度
* m Month月
* y Day of year一年的數
* d Day天
* w Weekday一周的天數
* ww Week of year周
* h Hour小時
* n Minute分
* s Second秒
* w、y和d的作用是完全一樣的,即在目前的日期上加一天,q加3個月,ww加7天。
*/
function DateAdd($interval, $number, $date) {
$date = gettime($date);
$date_time_array = getdate($date);
$hours = $date_time_array["hours"];
$minutes = $date_time_array["minutes"];
$seconds = $date_time_array["seconds"];
$month = $date_time_array["mon"];


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved