可以通过以下代码实现:
// 获取上周的年份
$lastWeekYear = date('Y', strtotime('-1 week'));
// 指定明年的某一天
$nextYearDate = date('Y-m-d', strtotime('+1 year', strtotime('2022-01-01')));
echo "上周的年份是:".$lastWeekYear."<br>";
echo "明年的某一天是:".$nextYearDate;
这段代码中,我们使用date()
函数和strtotime()
函数来进行日期的处理。首先,通过strtotime('-1 week')
获取上周的时间戳,然后使用date('Y', ...)
将时间戳转换为年份。接着,通过strtotime('+1 year', strtotime('2022-01-01'))
指定明年的某一天,再次使用date('Y-m-d', ...)
将时间戳转换为指定格式的日期。
以上代码中没有提及具体的腾讯云产品,因此无需提供相关链接。
领取专属 10元无门槛券
手把手带您无忧上云