分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

实际开发--->php时间函数

发布时间:2023-09-06 01:15责任编辑:顾先生关键词:暂无标签

当前日期(例:2017-10-04):date(‘Y-m-d‘,time());

当前时间戳:strtotime(date(‘Y-m-d H-i-s‘,time());

当前年月(例:2017-10):$now=date(‘Y-m‘,time());

当月第一天(例:2017-10-01):$month_start=date("Y-m-01",strtotime($now));

 当月最后一天(例:2017-10-31):$month_end=date("Y-m-d",strtotime("$now+1 month -1 day"));

把当月第一天转换为时间戳:strtotime($month_start."00:00:00");

把当月最后一天转换为时间戳:strtotime($month_end."23:59:59");

当前年份(例:2017):$year=date(‘Y‘);

当年一月一日零点:strtotime(date("Y-01-01 00:00:00",strtotime($year)));

当年十二月三十一日23:59:59:strtotime(date("Y-12-31 23:59:59",strtotime($year)));

实际开发--->php时间函数

原文地址:http://www.cnblogs.com/peipeiyu/p/7625939.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved