码迷,mamicode.com
首页 > Web开发 > 详细

PHP-时间小结

时间:2014-05-26 07:26:50      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:c   ext   a   时间   php   date   

//获得本周(本天)时间戳的起始和结束
//本周星期一时间戳
$monday = mktime(0, 0, 0, date("m",strtotime("last Monday"))   , date("d",strtotime("last Monday")), date("Y",strtotime("last Monday")));
//本周星期日时间戳
$sunday = mktime(0, 0, 0, date("m",strtotime("next Sunday"))   , date("d",strtotime("next Sunday")), date("Y",strtotime("next Sunday")));

//今日起始时间戳
$lastSecToday = mktime(0, 0, 0, date("m")   , date("d")+1, date("Y"))-1;
//今日结束时间戳
$firstSecToday = mktime(0, 0, 0, date("m")   , date("d"), date("Y"));

PHP-时间小结,布布扣,bubuko.com

PHP-时间小结

标签:c   ext   a   时间   php   date   

原文地址:http://www.cnblogs.com/kafeijiu/p/3747753.html

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