#!/bin/sh start_date='2009-01-01'end_date='2010-06-01'date=$start_dateweek=-1 while truedo if test $date = $end_date then exit fi curweek=`date -d "$date" +%Y%W` if test ! $week -eq $curweek then tm=`date -d "$date" +%s` echo $curweek $date $tm week=$curweek #sleep 1 fi date=`date -d "$date + 1 day" +%Y-%m-%d`done
// 今天
var today = new Date();
todaysetHours(0);
todaysetMinutes(0);
todaysetSeconds(0);
todaysetMilliseconds(0);
alert(today);
var oneday = 1000 60 60 24;
// 昨天
var yesterday = new Date(today - oneday);
alert(yesterday);
// 上周一
var lastMonday = new Date(today- oneday (todaygetDay() + 6));
alert(lastMonday);
// 上个月1号
var lastMonthFirst = new Date(today - oneday todaygetDate());
lastMonthFirst = new Date(lastMonthFirst - oneday (lastMonthFirstgetDate() - 1));
alert(lastMonthFirst);
用date函数可以确定当前时间戳是第几周,然后比较两个时间戳的数值是不是一样就行了。
<phpecho date('W',strtotime('2016-10-9')),"<br/>";
echo date('W',strtotime('2016-10-10')),"<br/>";
echo date('W',strtotime('2016-10-12')),"<br/>";
echo date('W',strtotime('2016-10-16')),"<br/>";
echo date('W',strtotime('2016-10-18'));
>
把得到的结果赋值,然后加一个if判断就行了
以上就是关于mysql 如何得到一年当中每周第一秒的时间戳全部的内容,包括:mysql 如何得到一年当中每周第一秒的时间戳、js或者jquery怎样获得前一天0点,前一周0点,指定月份的时间戳、PHP 怎么判断两个时间戳是不是在同一周等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)