程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php的日期處理經驗集

php的日期處理經驗集

編輯:關於PHP編程

//由年、月、日合成日期
function dateserial($nyear,$nmonth,$nday)
{
return date("Y/n/j",mktime(0,0,0,$nmonth,$nday,$nyear));
}

$now_rq=date("Y/n/j");//去現在的日期
$year=date(Y);//取得年
$month=date(m);//取月
$month=date(j);//取日

//由月份取得所在季度的第一天和最後一天
switch($month){
case 1:
case 2:
case 3:
$quarter_begin=dateserial($year-1,10,1);
$quarter_end=dateserial($year-1,12,31);
break;
case 4:
case 5:
case 6:
$quarter_begin=dateserial($year,1,1);
$quarter_end=dateserial($year,3,31);
break;
case 7:
case 8:
case 9:
$quarter_begin=dateserial($year,4,1);
$quarter_end=dateserial($year,6,30);
break;
case 10:
case 11:
case 12:
$quarter_begin=dateserial($year,7,1);
$quarter_end=dateserial($year,9,30);
break;
}

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