常用的时间转换代码可以收藏哦
管理员 发布于 7年前   411
转时间戳:strtotime 我就不写了 今天:date("Y-m-d"); 昨天:date('Y-m-d',strtotime("-1 day")); 上月第一天:date('Y-m-01', strtotime('-1 month')); 上月最后一天:date('Y-m-t', strtotime('-1 month')); 当月第一天:date('Y-m-01', strtotime($time)); 当月最后一天:date('Y-m-d',strtotime(date('Y-m-01', strtotime($time)) + 1 month -1 day)); 4.使用函数及数组来获取当月第一天及最后一天,来自网络 function getthemonth($date) { $firstday = date('Y-m-01', strtotime($date)); $lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day")); return array($firstday,$lastday); } $today = date("Y-m-d"); $day=getthemonth($today); echo "当月的第一天: ".$day[0]." 当月的最后一天: ".$day[1];
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
该博客于2020-12-7日,后端基于go语言的beego框架开发
前端页面使用Bootstrap可视化布局系统自动生成
是我仿的原来我的TP5框架写的博客,比较粗糙,底下是入口
侯体宗的博客
文章标签
友情链接