Home > Article > Backend Development > How to get the current month in php
In PHP, you can use the date() function to get the current month. This function is used to format the time and date. When the parameter is set to "m", you can get the month with leading zeros. Number, the syntax is "date("m")".
The operating environment of this article: Windows 10 system, PHP version 7.1, Dell G3 computer.
PHP date() function is used to format time/date.
PHP date() function can format the timestamp into a more readable date and time.
A timestamp is a character sequence that represents the date/time when a certain event occurred.
Syntax
string date ( string $format [, int $timestamp ] )
Parameter Description
format Required. Specifies the format of the timestamp.
timestamp Optional. Specify timestamp. The default is the current date and time.
The first required parameter of the date() function, format, specifies how to format the date/time.
Here are some available characters:
d - represents the day of the month (01 - 31)
m - represents the month (01 - 12)
Y - represents the year (four digits)
If you need to know the format parameter, it is available For a full list of characters, please consult our PHP Date Reference Manual, date() function.
You can insert other characters between letters, such as "/", "." or "-", so that you can add additional formatting:
<?php echo date("Y/m/d") . "<br>"; echo date("Y.m.d") . "<br>"; echo date("Y-m-d"); ?>
The output of the above code is as follows :
Recommended study: "PHP Video Tutorial"
The above is the detailed content of How to get the current month in php. For more information, please follow other related articles on the PHP Chinese website!