发布时间:2014-09-05 10:22:25作者:知识屋
/** * 获取本周第一天/最后一天的时间戳 * @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实现加密的几种方式介绍
php生成圆角图片的方法 电脑中php怎么生成圆角图片教程
用PHP构建一个留言本方法步骤 php怎么实现留言板功能
php中三元运算符用法 php中的三元运算符使用说明
php文件如何怎么打开方式介绍 php文件用什么打开方法
PHP怎么插入数据库方法步骤 php编程怎么导入数据库教程
如何安装PHPstorm并配置方法教程 phpstorm安装后要进行哪些配置
PHP 获取远程文件大小的3种解决方法 如何用PHP获取远程大文件的大小
20个实用PHP实例代码 php接口开发实例代码详细介绍
如何架设PHP服务器方法步骤 怎么搭建php服务器简单教程