Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does php determine the date of the year?

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces php how to judge the specified date is the first day of the year, the content is very detailed, interested friends can refer to, hope to help you.

Judgment method: 1, use the strtotime () function to convert the specified date into a timestamp format, syntax "strtotime (" specified date ")"; 2, use the date () function to calculate the day of the specified timestamp of the year, syntax "date (" z ", timestamp)".

Operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

In php, you can use the date () function to calculate the day of the year on which the specified date is.

The date () function can specify a timestamp to change to the day of the year.

Syntax:

Date (format,timestamp)

When the parameter format is set to z, the specified timestamp timestamp can be calculated as the day of the year. Note: days start from 0 (from 0 to 365).

Example: calculate the specified date 2018-01-18 is the day of the year

Output:

Parsing:

Because the date () function handles timestamps, you need to first use strtotime () to convert the specified date into a timestamp format

Then use date ("z", $time) to calculate the day of the year.

Because the number of days returned by date ("z", $time) starts at 0, you can add 1 to the return value.

About php how to judge the specified date is the first day of the year to share here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report