📅  最后修改于: 2023-12-03 15:27:48.782000             🧑  作者: Mango
在 PHP 中,我们可以使用 date()
函数来获取当前时间,同时也可以使用 strtotime()
函数来进行时间上的加减操作。下面,我们将介绍如何使用这两个函数来获取上个月的 PHP。
要获取上个月的 PHP,我们可以使用以下代码片段:
$last_month_php = date('Ym', strtotime('last month'));
这里,我们首先使用 strtotime()
函数来获取上个月的时间戳,再使用 date()
函数将其格式化为我们需要的 PHP 格式。其中,last month
参数表示上个月,Ym
表示年份和月份,如 202201
表示 2022 年 1 月。
为了方便重复使用,我们可以将上面的代码封装成一个函数:
function get_last_month_php() {
return date('Ym', strtotime('last month'));
}
这样,我们就可以在其他地方直接调用该函数来获取上个月的 PHP。
通过使用 date()
和 strtotime()
函数,我们可以轻松地获取上个月的 PHP,从而为我们的开发工作提供便利。