gpt4 book ai didi

php - 如何在PHP中获取下个月

转载 作者:可可西里 更新时间:2023-11-01 00:08:18 24 4
gpt4 key购买 nike

我需要在下个月使用 php。到处都写着这些例子

date('Y-m-t', strtotime('+1 month'));

以上代码的输出是'2017-03-31'。我需要二月,而不是三月。

最佳答案

如果你想得到下一个而不考虑当前月份的当前日期。下面的代码可能对你有帮助

echo date('M',strtotime('first day of +1 month'));
// e.g. "Jan"

echo date('m',strtotime('first day of +1 month'));
// e.g. "1"

echo date('F',strtotime('first day of +1 month'));
// e.g. "January"

这会给你下个月。

您可以在 date() function documentation 中找到更多格式掩码

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

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