获取本周第一天/最后一天、本月第一天/最后一天的时间戳
/** * 获取本周第一天/最后一天的时间戳 * @param string $type * @return integer */ public function get_week_time( $type = 'first' ) { /* 获取本周第一天/最后一天的时间戳 */ $year = date( "Y" ); $month = date( "m" ); $day = date( 'w' ); $nowMonthDay = date( "t" ); if ( $type == 'first' ) { $firstday = date( 'd' ) - $day; if ( substr( $firstday, 0, 1 ) == "-" ) { $firstMonth = $month - 1; $lastMonthDay = date( "t", $firstMonth ); $firstday = $lastMonthDay - substr( $firstday, 1 ); $time_1 = strtotime( $year . "-" . $firstMonth . "-" . $firstday ); } else { $time_1 = strtotime( $year . "-" . $month . "-" . $firstday ); } return $time_1; } else { $lastday = date( 'd' ) + (7 - $day); if ( $lastday > $nowMonthDay ) { $lastday = $lastday - $nowMonthDay; $lastMonth = $month + 1; $time_2 = strtotime( $year . "-" . $lastMonth . "-" . $lastday ); } else { $time_2 = strtotime( $year . "-" . $month . "-" . $lastday ); } return $time_2; } } /** * 获取本月第一天/最后一天的时间戳 * @param string $type * @return integer */ public function get_month_time( $type = 'first' ) { /* 获取本月第一天/最后一天的时间戳 */ $year = date( "Y" ); $month = date( "m" ); $allday = date( "t" ); if ( $type == 'first' ) { $start_time = strtotime( $year . "-" . $month . "-1" ); return $start_time; } else { $end_time = strtotime( $year . "-" . $month . "-" . $allday ); return $end_time; } }
>更多相关文章
- 02-25谷歌推行Tango 3D智能视效手机开发项目
- 12-22php $_server应用
- 12-22PHP 解决一次因压缩代码引发的死循环
- 12-22php jquery 多文件上传
- 12-22该如何使用thinkphp分表呢?
- 12-22thinkPHP模板的输出和模型的使用
首页推荐
佛山市东联科技有限公司一直秉承“一切以用户价值为依归
- 01-11全球最受赞誉公司揭晓:苹果连续九年第一
- 12-09罗伯特·莫里斯:让黑客真正变黑
- 12-09谁闯入了中国网络?揭秘美国绝密黑客小组TA
- 12-09警示:iOS6 惊现“闪退”BUG
- 11-28Bossjob宣布上线AI翻译功能
- 11-28腾讯应用宝电脑版推小宝AI助手 部分功能已
- 11-28周鸿祎亲自上阵演短剧,将于发布会上播出
- 11-28机构:2024第三季度全球NAND闪存产业营收增
- 11-18LG新能源宣布与Bear Robotics达成合作,成为
相关文章
24小时热门资讯
24小时回复排行
热门推荐
最新资讯
操作系统
黑客防御