PHP時間常用操作函數

WBOY
發布: 2016-07-25 09:12:28
原創
958 人瀏覽過

1.判斷某一天是星期幾

  1. /**
  2. * 判斷某一天是星期幾
  3. * @param $date 格式'YYYY-mm-dd' 格式出錯返回false,正確返回對應日期中星期一到星期天的某一天
  4. */
  5. function get_weekday($date){
  6. $date_arr = explode('-', trim($date));
  7. if(!checkdate(intval($date_arr[1]), intval($date_arr[2]), intval($date_arr[0]))){
  8. return false;
  9. }
  10. switch (date('w',strtotime($date))) {
  11. case '0':
  12. $weekday = '天';
  13. break;
  14. case '1':
  15. $weekday = '一';
  16. break;
  17. case '2':
  18. $weekday = '二';
  19. break;
  20. case '3':
  21. $weekday = '三';
  22. break;
  23. case '4':
  24. $weekday = '四';
  25. break;
  26. case '5 ':
  27. $weekday = '五';
  28. break;
  29. case '6':
  30. $weekday = '六';
  31. break;
  32. default:
  33. return false ;
  34. break;
  35. }
  36. return $weekday;
  37. }
  38. //demo_呼叫
  39. $day = '2014-02-16';
  40. if(get_weday = '2014-02-16';
  41. if(get_weday( $day)){
  42. $test1 = get_weekday($day);
  43. echo '星期' . $test1 . '
    ';
  44. }else{
  45. echo '日期出錯';
}
複製程式碼

2.判斷日期格式是否正確
  1. /**
  2. /**
  3. * 判斷日期格式是否正確
  4. * 判斷格式yyyy-mm-dd | yyyy-mm-dd hh:ii:ss
  5. * @param $tdate 要判斷日期
  6. * @param $dateformat要判斷的日期格式"Y-m-d"或"Y-m-d H:i:s"
  7. */
  8. function is_date($tdate,$dateformat="Y-m-d"){
  9. $tdate = trim($tdate);
  10. //不能轉換為時間戳
  11. if( !is_numeric!is_numeric (strtotime($tdate)) ) return false;
  12. //判斷日期是否存在&& 年月日的格式為Y-m-d
  13. $tdate_date = explode(" ", $tdate);
  14. $tdate_time = explode ("-", $tdate_date[0]);
  15. if(isset($tdate_time[0]))
  16. $year = $tdate_time[0];
  17. else
  18. return false;
  19. if(isset($tdate_time[1]))
  20. $month = $tdate_time[1];
  21. else
  22. return false;
  23. if(isset($tdate_time[2]))
  24. $day = $tdate_time[2];
  25. else
  26. return false;
  27. if( !checkdate($month, $day, $year) ) return false;
  28. //判斷日期是否為指定格式
  29. $tmpdate = date($dateformat,strtotime($tdate));
  30. if( $tmpdate==$tdate )
  31. return true;
  32. else
  33. return false;
  34. }
  35. /**使用演示*/
  36. $tdate = '2014-02-16 11:25:33';
  37. //$tdate = '2014-02-16';
  38. //$tdate = '2014.02.16';
  39. //$tdate = 'asdqwe123123sadsad';
  40. $dateformat = 'Y-m-d';
  41. //$dateformat = "Y-m-d H:ii: s";
if( is_date($tdate,$dateformat) ){
echo 'true';}else{ echo 'false';
}

echo 'false';
}
  1. 複製程式碼
  2. 3.傳回兩個日期之間的所有天數日期
  3. /**
  4. * 傳回兩個日期之間的所有天數日期
  5. * 依賴is_date()
  6. * @param $tdate1 $tdate2 必須為'Y-m-d'格式
  7. * $tdate1 * return 字串
  8. */
  9. function getAllDateBetDays($tdate1,$tdate2){
  10. $dateformat = 'Y-m-d';
  11. if( !is_date($tdate1,$dateformat) ) return "日期參數1格式錯誤";
  12. if( !is_date($tdate2,$dateformat) ) return "日期參數2格式錯誤";
  13. if( $tdate1>$tdate2 ) return "日期參數2必須大於等於日期參數1";
  14. $ days = "'" . $tdate1 . "'";
  15. while( $tdate1 $days .= "'" . date("Y-m-d",strtotime($tdate1)+86400) . "'";
  16. $tdate1 = date("Y-m-d",strtotime($tdate1)+86400);
}
return $days;}/**
return $days;

}

/**使用演示 */
$tdate1 = '2014-02-01';
//$tdate1 = 'asdqwe123123sadsad';
    $tdate2 = '2014-02-30';
  1. echo ,$tdate2);
  2. 複製程式碼
  3. 4.判斷月份格式是否正確
  4. ****
  5. * 判斷月份格式是否正確
  6. * 判斷格式 yyyy-mm
  7. * @param $tmonth 要判斷月份
  8. * @param $monformat 要判斷的月份日期 "Y-m"
  9. */
  10. function is_month($tmonth,$monformat="Y-m"){
  11. $tmonth = trim($tmonth);
  12. //不能轉換為時間戳
  13. if( ! is_numeric(strtotime($tmonth)) ) return false;
  14. //判斷月份是否為指定格式
  15. $tmpmonth = date($monformat,strtotime($tmonth));
  16. if( $tmpmonth== $tmonth )
  17. return true;
  18. else
return false;
}/**使用演示*///$month = '02.16';*/
//$month = '02.16';*///$month = '02.16';$ month = '2014-02';$monformat = "Y-m";if( is_month($month,$monformat) )//if( is_month($month) ) echo ' true';else echo 'false';複製程式碼

5.返回兩個月之間所有月份

  1. /**
  2. * 傳回兩個月之間所有月份
  3. * @param $tmonth1 $tmonth2 必須 $tmonth1 * return String
  4. */
  5. function gatAllMonBetMons($tmonth1,$tmonth2){
  6. $dateformat = "Y-m";
  7. if( !is_month($tmonth1,$dateformat) ) return "月份參數1格式錯誤";
  8. if( !is_month($tmonth2,$dateformat) ) return "月份參數2格式錯誤";
  9. if( $tmonth1>$tmonth2 ) return "月份參數2必須大於等於月份參數1";
  10. $months = "'" . $tmonth1 . "'";
  11. while( $tmonth1 $months .= "'" . date("Y-m",strtotime($tmonth1 . "-01" . "+1 month")) . "'";
  12. $tmonth1 = date("Y-m",strtotime($tmonth1 . "-01" . "+1 month"));
  13. }
  14. return $months;
  15. }
  16. /** 使用演示*/
  17. $month1 = '2013-01';
  18. $month2 = '2014-02';
  19. echo gatAllMonBetMons($month1,$month2);
複製程式碼

6.相對目前時間點日期取得

  1. /**
  2. * 相對當前時間點日期取得
  3. * @param $needle "0":全部日期值"1":昨天"2":前天"3":上週今天"4":上個月今天" 5":明天
  4. * 上月今天,如果上月的天數比這個本月天數少,缺少所在天數,則默認返回上月最後一天
  5. * return 相應日期值json格式
  6. */
  7. function get $tdate = date("Y-m-d",time());
  8. $NeedDate = array();
  9. $NeedDate[1] = date("Y-m-d",time()-864000 );
  10. $NeedDate[2] = date("Y-m-d",time()-86400*2);
  11. $NeedDate[3] = date("Y-m-d",time()-86400*7);
  12. //上月天數
  13. $lmd_num = date("t",strtotime( date("Y-m-d",time()) . "-1 month" ));
  14. //今天為該月第幾天
  15. $tod_num = date("j",time());
  16. if($tod_num $NeedDate[4] = date("Y-m",strtotime( date("Y-m-d",time()) . "-1 month" )) . '-' . $tod_num;
  17. }else{
  18. $NeedDate[4] = date("Y-m",strtotime( date ("Y-m-d",time()) . "-1 month" )) . '-' . $lmd_num;
  19. }
  20. $NeedDate[5] = date("Y-m-d",time()+86400) ;
  21. switch ($needle) {
  22. case 0:
  23. return json_encode($NeedDate);
  24. break;
  25. case 1:
  26. return json_encode($NeedDate[1]);
  27. break;
  28. case 2:
  29. return json_encode($NeedDate[2]);
  30. break;
  31. case 3:
  32. return json_encode($NeedDate[3]);
  33. break;
  34. case 4:
  35. return json_encode($NeedDate[4]);
  36. break;
  37. default:
  38. return false;
  39. break
  40. }
  41. }
  42. /**使用演示*/
  43. var_dump(json_decode(getNeedDate(0),true));
  44. var_dump(json_decode(getNeedDate(4),true));
複製程式碼

7.閏年判斷
  1. /**
  2. * 閏年判斷
  3. * 閏年計算:
  4. * 1.世紀年能被400整除
  5. * 2.普通年能被4整除,但不能被100整除
  6. * @param $ year
  7. */
  8. function>
  9. /**使用演示*/
  10. function isBissextile($year) {
  11. $year = intval(trim($year));
  12. $preg = "/^d{4,}$/";
  13. if( !preg_match($preg, $year) )
  14. return false;
  15. if( $year%400==0 ){
  16. return true;
  17. }elseif( $year%4==0 && $year%100!=0 ){
  18. return true;
  19. }else{
  20. return false;
  21. }
  22. }
  23. /**
  24. * 兩個日期之間間隔天數
  25. * 依賴 is_date
* @param $tdate1 $tdate2 $tdate1*/$year = '2012';if( isBissextile($year) )
echo 'true';

else

echo 'false';
    複製程式碼
  1. 複製程式碼
  2. 8.兩個日期之間間隔天數
  3. /**使用演示*/
  4. function getIntervalDays($tdate1,$tdate2){
  5. $dateformat = 'Y-m-m- d';
  6. if( !is_date($tdate1,$dateformat) ) return "日期參數1格式錯誤";
  7. if( !is_date($tdate2,$dateformat) ) return "日期參數2格式錯誤" ;
  8. if( $tdate1>$tdate2 ) return "日期參數2必須大於等於日期參數1";
$days = ceil((strtotime($tdate2)-strtotime($tdate1))/86400);
return $days;}/***/
$tdate1 = '2014-01-01';

$tdate2 = '2014-01-16';

echo getIntervalDays($tdate1,$tdate2);
複製程式碼


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板