Home  >  Article  >  Backend Development  >  PHP determines which month this month is

PHP determines which month this month is

青灯夜游
青灯夜游Original
2022-05-05 19:31:062594browse

In PHP, you can use the date() function to determine which month this month is. This function can format the current date and convert it into a string or number representing the month. The syntax "date(" format Character ")"; when the format character is "F" or "M", the English word representing the month can be output, and if it is "m" or "n", the number representing the month can be output.

PHP determines which month this month is

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

In PHP, you can use the date() function to determine which month this month is.

The date() function formats the timestamp into a more readable date and time.

Use the date() function to format the current date and convert it into a string or number representing the month.

date("格式字符")

Format characters can be the following 4 types:

month, complete text Format, such as January or March##m Numerical month, with leading zeros 01MJan##n to Example:
##F January to December

to 12
Three-letter month abbreviation to Dec
Numerical month, without leading zeros 112
<?php 
header("content-type:text/html;charset=utf-8");
echo "本月的月份为:".date("F")."<br>";
echo "本月的月份为:".date("M")."<br>";
echo "本月的月份为:".date("m")."<br>";
echo "本月的月份为:".date("n")."<br>";
?>


Look at the calendar and compare it to see if it is correctPHP determines which month this month is

ok, that’s right. PHP determines which month this month is

Recommended learning: "

PHP Video Tutorial

"

The above is the detailed content of PHP determines which month this month is. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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