gpt4 book ai didi

php - 如何将月份添加到时间戳

转载 作者:行者123 更新时间:2023-12-02 04:43:19 25 4
gpt4 key购买 nike

我有一个时间戳 $timestamp。如何使用 strtotime 向该时间戳添加 6 个月?

我想做

$date = date('Y-m-d H:i:s', $timestamp);
$sixmonths_fromnow = strtotime('+6 months', $date);

但是我可以直接在时间戳上使用 strtotime 吗?我必须先使用 date() 函数吗?

最佳答案

您需要使用时间戳:

$sixmonths_fromnow = strtotime('+6 months', $timestamp);
echo date('Y-m-d H:i:s', $sixmonths_fromnow);

关于php - 如何将月份添加到时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20357222/

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