gpt4 book ai didi

php - 如何获取上月和下月?

转载 作者:可可西里 更新时间:2023-10-31 22:40:14 26 4
gpt4 key购买 nike

$year  = 2010;
$month = 10;

如何获取上个月 2010-09 和下个月 2010-11

最佳答案

$date = mktime( 0, 0, 0, $month, 1, $year );
echo strftime( '%B %Y', strtotime( '+1 month', $date ) );
echo strftime( '%B %Y', strtotime( '-1 month', $date ) );

关于php - 如何获取上月和下月?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3930791/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com