日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

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

發布時間:2023/12/20 php 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 实际开发---php时间函数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

當前日期(例: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)));

date("Y-m-d",?strtotime("+1?months",?strtotime("2010-10-06")));

當前時間戳:strtotime("now"); 以下是在當前的時間戳上加 strtotime("7 October?2017); strtotime("+8 hours"); strtotime("+2 week"); strtotime("+1?week 2 days 3 hours 4 seconds");

strtotime("last?Sunday");

strtotime("next?Monday");


?

轉載于:https://www.cnblogs.com/peipeiyu/p/7625939.html

總結

以上是生活随笔為你收集整理的实际开发---php时间函数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。