php之获取指定年月的月初月末时间戳

独立做php后台已经一年多了,以前只想着怎么做,现在才想起了怎么去总结。

希望把我遇到的问题和解决思路分享给大家,给大家带来便利。

//月初月末时间戳  
$Y = 2016;//获取年,示例,真实环境从前端获取数据  
$m = 8;//获取月,示例,真实环境从前端获取数据  
$month = $Y."-".$m;//当前年月  
$month_start = strtotime($month);//指定月份月初时间戳  
$month_end = mktime(23, 59, 59, date('m', strtotime($month))+1, 00);//指定月份月末时间戳  
//dump(array("month"=>$month,"month_start"=>$month_start,"month_end"=>$month_end));//输出  

公司要求做结算,指定月份,本人数据库时间都用时间戳记录,便写了这段获取指定年月月初月末时间戳的代码。

HTTPROOT | 自学PHP | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 石头哥 |微信小程序 |木讯 |备案号:京ICP备17015498号
Copyright © 1998 - 2016 HTTPROOT.COM. All Rights Reserved httproot.com 版权所有