发表时间:2014-09-05来源:网络
/** * 获取本周第一天/最后一天的时间戳 * @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; } }
上一篇:php (三) PHP变量类型
CI框架连接数据库配置操作以及多数据库操作
asp 简单读取数据表并列出来 ASP如何快速从数据库读取大量数据
C语言关键字及其解释介绍 C语言32个关键字详解
C语言中sizeof是什么意思 c语言里sizeof怎样用法详解
PHP中的魔术方法 :__construct, __destruct , __call, __callStatic,__get, __set, __isset, __unset , __sleep,
将视频设置为Android手机开机动画的教程
PHP中的(++i)前缀自增 和 (i++)后缀自增
最简单的asp登陆界面代码 asp登陆界面源代码详细介绍
常用dos命令及语法
PHP中include和require区别之我见
中山眼科中心app下载v6.3.1
45.28MB |生活服务
易查车辆违章查询下载v3.2.20
138.59M |生活服务
鞍马司机极速版最新版本下载v6.40.5.0003
151.09MB |系统工具
星徽专车司机端软件最新版本下载v2.0.45
79.47MB |生活服务
临汾云客户端下载v2.1.17 安卓手机版
162.83MB |资讯阅读
jp五十音图app(改名冲鸭日语)下载v1.9.5 安卓版
151.29MB |学习教育
智通三千企业app下载v1.84 安卓版
101.14MB |商务办公
左拍app下载v5.3.1 安卓版
297.16MB |拍摄美化
2014-09-05
2022-03-20
2022-03-21
2022-03-24
2014-09-05
2014-09-05
2015-07-05
2014-09-05
2022-03-21
2014-09-05