码迷,mamicode.com
首页 > 其他好文 > 详细

时间函数date(),mktime(),strtotime()

时间:2018-09-15 23:49:11      阅读:464      评论:0      收藏:0      [点我收藏+]

标签:结束   star   art   nbsp   yesterday   pre   获取   rda   时间戳   

$begin_time = ‘2018-8‘;
//指定月份月初时间戳
$month_start = strtotime($begin_time);
//指定月份月末时间戳
$month_end = mktime(23, 59, 59, date(‘m‘, strtotime($begin_time))+1, 00);

//获取本周是第几周
$date = date(‘Y-m-d‘,time());
$date_week = date("W", strtotime($date));   //本周日期是第几周
$week_num = date("w", strtotime($date));     //本周日期是星期几

//获取前一天的时间:
$mytime= date("Y-m-d H:i:s", strtotime("-1 day"));

//获取三天前的时间:
$mytime= date("Y-m-d H:i:s", strtotime("-3 day"));

//获取前一个月的时间:
$mytime= date("Y-m-d H:i:s", strtotime("-1 month"));

//获取前3个月的时间:
$mytime= date("Y-m-d H:i:s", strtotime("-3 month"));

//获取前一个小时的时间:
$mytime= date("Y-m-d H:i:s", strtotime("-1 hour"));

//获取前一年的时间:
$mytime= date("Y-m-d H:i:s", strtotime("-1 year"));

//获取本月16日的时间戳
$end_time = strtotime(date(‘Y-m-16‘)); //结束是间 本月16日

//获取上个月16日的时间戳
$yesterday = strtotime(date(‘Y-m-16‘,strtotime(‘-1month‘)));

 

时间函数date(),mktime(),strtotime()

标签:结束   star   art   nbsp   yesterday   pre   获取   rda   时间戳   

原文地址:https://www.cnblogs.com/zwtqf/p/9653022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!