在 PHP 中使用 Date() 函数获取当前月份
Subodh Poudel
2022年5月13日
本教程介绍了在 PHP 中查找当前月份的方法。
在 PHP 中使用 date()
函数查找当前月份
我们可以使用 PHP 中的 date()
函数根据提供的格式获取当前日期。date()
函数的语法如下所示。
date($format,$timestamp);
$format
选项指示日期的格式。我们可以设置 DateTimeInterface
类的 format()
方法支持的格式。 $format
参数是一个字符串。 $timestamp
指定 Unix 时间戳,可选,date()
函数返回一个字符串。
我们可以在 date()
函数中指定各种格式来根据我们的需要返回日期。我们可以使用这种格式返回一年中的当前月份。
有一个由 DateTimeInterface::format() 指定的格式字符列表来设置日期。让我们探索一些返回当前月份的格式字符。
F
:返回当前月份的文本表示。例如,一月。m
:它返回当前月份的数字表示,带有前缀0
。例如,01
。M
:返回当前月份的简短文本表示。例如,Jan
。n
:它返回当前月份的数字表示,不带前缀0
。例如,1
。
我们现在将实现以下格式字符来返回当前月份。
例如,编写 date()
函数并使用上述格式字符作为函数的参数。
不要忘记用引号包裹格式字符并使用 echo
语句来打印函数。
一年中的当前月份是二月,我们可以看到当前月份显示在下面的输出部分中。这样,我们就可以在 PHP 中使用格式字符来获取当前月份。
示例代码:
echo date('m');
echo ": Using the `m` format"."";
echo date('F');
echo ": Using the `F` format"."";
echo date('M');
echo ": Using the `M` format"."";
echo date('n');
echo ": Using the `n` format"."";
?>
输出:
02: Using the `m` format
February: Using the `F` format
Feb: Using the `M` format
2: Using the `n` format
Author: Subodh Poudel
Subodh is a proactive software engineer, specialized in fintech industry and a writer who loves to express his software development learnings and set of skills through blogs and articles.
LinkedIn