Home
php教程
php手册
PHP function to get the starting timestamp of the current year, month, and day and the starting timestamp of the next year, month, and day



PHP function to get the starting timestamp of the current year, month, and day and the starting timestamp of the next year, month, and day
1. Timestamp of the current year
2. Timestamp of the current month
3. Timestamp of current day
4. Next year’s start timestamp
5. The start timestamp of next month
6. Tomorrow’s start timestamp
7. Current timestamp
Function code:
<span style="color: #008000;">/*</span><span style="color: #008000;">* * 获取时间戳 * $Ymd = Y 年 * $Ymd = m 月 * $Ymd = d 日 * $Ymd = NULL 当前时间戳 * $xia = true 是否取下次开始时间戳:取下年开始时间戳 或者下月开始时间戳 或者明日开始时间戳 </span><span style="color: #008000;">*/</span> <span style="color: #0000ff;">function</span> getTime(<span style="color: #800080;">$Ymd</span>=<span style="color: #0000ff;">NULL</span>,<span style="color: #800080;">$xia</span>=<span style="color: #0000ff;">false</span><span style="color: #000000;">){ </span><span style="color: #0000ff;">if</span>(<span style="color: #800080;">$Ymd</span>=='Y' && <span style="color: #800080;">$xia</span>==<span style="color: #0000ff;">true</span><span style="color: #000000;">){ </span><span style="color: #008000;">//</span><span style="color: #008000;">取下个年度开始时间戳</span> <span style="color: #0000ff;">return</span> <span style="color: #008080;">strtotime</span>((<span style="color: #008080;">date</span>('Y',<span style="color: #008080;">time</span>())+1).'-01-01 00:00:00'<span style="color: #000000;">); } </span><span style="color: #0000ff;">else</span> <span style="color: #0000ff;">if</span>(<span style="color: #800080;">$Ymd</span>=='Y'<span style="color: #000000;">){ </span><span style="color: #008000;">//</span><span style="color: #008000;">取本年度开始时间戳</span> <span style="color: #0000ff;">return</span> <span style="color: #008080;">strtotime</span>(<span style="color: #008080;">date</span>('Y',<span style="color: #008080;">time</span>()).'-01-01 00:00:00'<span style="color: #000000;">); } </span><span style="color: #0000ff;">else</span> <span style="color: #0000ff;">if</span>(<span style="color: #800080;">$Ymd</span>=='m' && <span style="color: #800080;">$xia</span>==<span style="color: #0000ff;">true</span><span style="color: #000000;">){ </span><span style="color: #008000;">//</span><span style="color: #008000;">取下个月度开始时间戳</span> <span style="color: #800080;">$xiayue_nianfen</span> = <span style="color: #008080;">date</span>('Y',<span style="color: #008080;">time</span><span style="color: #000000;">()); </span><span style="color: #800080;">$xiayue_yuefen</span> = <span style="color: #008080;">date</span>('m',<span style="color: #008080;">time</span><span style="color: #000000;">()); </span><span style="color: #0000ff;">if</span>(<span style="color: #800080;">$xiayue_yuefen</span>==12<span style="color: #000000;">){ </span><span style="color: #800080;">$xiayue_nianfen</span> += 1; <span style="color: #008000;">//</span><span style="color: #008000;">如果月份等于12月,那么下月年份+1</span> <span style="color: #800080;">$xiayue_yuefen</span> = 1; <span style="color: #008000;">//</span><span style="color: #008000;">如果月份等于12月,那么下月月份=1月</span> <span style="color: #000000;"> } </span><span style="color: #0000ff;">else</span><span style="color: #000000;">{ </span><span style="color: #800080;">$xiayue_yuefen</span> += 1; <span style="color: #008000;">//</span><span style="color: #008000;">如果月份不是12月,那么在当前月份上+1</span> <span style="color: #000000;"> } </span><span style="color: #0000ff;">return</span> <span style="color: #008080;">strtotime</span>(<span style="color: #800080;">$xiayue_nianfen</span>.'-'.<span style="color: #800080;">$xiayue_yuefen</span>.'-01 00:00:00'<span style="color: #000000;">); } </span><span style="color: #0000ff;">else</span> <span style="color: #0000ff;">if</span>(<span style="color: #800080;">$Ymd</span>=='m'<span style="color: #000000;">){ </span><span style="color: #008000;">//</span><span style="color: #008000;">取本月度开始时间戳</span> <span style="color: #0000ff;">return</span> <span style="color: #008080;">strtotime</span>(<span style="color: #008080;">date</span>('Y-m',<span style="color: #008080;">time</span>()).'-01 00:00:00'<span style="color: #000000;">); } </span><span style="color: #0000ff;">else</span> <span style="color: #0000ff;">if</span>(<span style="color: #800080;">$Ymd</span>=='d' && <span style="color: #800080;">$xia</span>==<span style="color: #0000ff;">true</span><span style="color: #000000;">){ </span><span style="color: #008000;">//</span><span style="color: #008000;">取明日开始时间戳</span> <span style="color: #0000ff;">return</span> <span style="color: #008080;">strtotime</span>(<span style="color: #008080;">date</span>('Y-m-d',<span style="color: #008080;">time</span>()).' 00:00:00')+86400<span style="color: #000000;">; } </span><span style="color: #0000ff;">else</span> <span style="color: #0000ff;">if</span>(<span style="color: #800080;">$Ymd</span>=='d'<span style="color: #000000;">){ </span><span style="color: #008000;">//</span><span style="color: #008000;">取今日开始时间戳</span> <span style="color: #0000ff;">return</span> <span style="color: #008080;">strtotime</span>(<span style="color: #008080;">date</span>('Y-m-d',<span style="color: #008080;">time</span>()).' 00:00:00'<span style="color: #000000;">); } </span><span style="color: #0000ff;">else</span><span style="color: #000000;">{ </span><span style="color: #008000;">//</span><span style="color: #008000;">取当前时间戳</span> <span style="color: #0000ff;">return</span> <span style="color: #008080;">time</span><span style="color: #000000;">(); } }</span>
Copy after login
Call code:
getTime('Y'); <span style="color: #008000;">//</span><span style="color: #008000;">当前年的时间戳</span> getTime('m'); <span style="color: #008000;">//</span><span style="color: #008000;">当前月的时间戳</span> getTime('d'); <span style="color: #008000;">//</span><span style="color: #008000;">当前日的时间戳</span> getTime('Y',<span style="color: #0000ff;">true</span>); <span style="color: #008000;">//</span><span style="color: #008000;">明年的时间戳</span> getTime('m',<span style="color: #0000ff;">true</span>); <span style="color: #008000;">//</span><span style="color: #008000;">下月的时间戳</span> getTime('d',<span style="color: #0000ff;">true</span>); <span style="color: #008000;">//</span><span style="color: #008000;">明日的时间戳</span> getTime(); <span style="color: #008000;">//</span><span style="color: #008000;">当前的时间戳</span>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Assassin's Creed Shadows: Seashell Riddle Solution
2 weeks ago
By DDD
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics
CakePHP Tutorial
1377
52

