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

Posted zwtqf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间函数date(),mktime(),strtotime()相关的知识,希望对你有一定的参考价值。

$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()的主要内容,如果未能解决你的问题,请参考以下文章

php中好用的时间函数

通过 PHP mktime() 创建日期

php date mktime 获取时间上的各种值

php 获取今日昨日上周本月的起始时间戳和结束时间戳的方法

PHP date, strtotime, mktime处理

linux把日期date转换为毫秒时间戳(struct tm)mktime()