如何使用date()获取上个月的YEAR

时间:2012-07-20 09:55:57

标签: php

我想要获得上个月的那一年。

例如,在July 2012我想要结果2012。 但在January 2013中,我想要结果2012 并在Feb 2013我想要结果2013

我搜索过并找到了How to get previous month and year relative to today, using strtotime and date? 它使用date_create函数(即DateTime类)。但我想要一个不使用它的解决方案。即使用简单的date()函数

1 个答案:

答案 0 :(得分:4)

<?php
echo date('Y', strtotime('-1 month'));

应该按预期工作。