为了账号安全,请及时绑定邮箱和手机立即绑定

strtotime未能及时增加30天

strtotime未能及时增加30天

PHP
噜噜哒 2022-08-05 15:27:32
我的代码是:$result = 20201601; //fetched from a source as string//Convert string to date format 'Y/m/d'$date1 = substr($result, 0, 4) . '/' . substr($result, 4, 2) . '/' . substr($result, 6, 2); echo $date1 . "<br>";//Add 30 days to it$date2 = date('Y/m/d', strtotime('+30 days', strtotime($date1)));echo $date2;if ($date2 < date('Y/m/d', strtotime('now'))){    //If date fetched ($result) is older than 30 days from today's date, then fetch new date from source}代码无法在以下位置添加 30 天:,它给出:date('Y/m/d', strtotime('+30 days', strtotime($date1)))1970/01/30
查看完整描述

1 回答

?
一只萌萌小番薯

TA贡献1795条经验 获得超7个赞

改变

$date1 = substr($result, 0, 4) . '/' . substr($result, 4, 2) . '/' . substr($result, 6, 2);

$date1 = substr($result, 0, 4) . '/' . substr($result, 6, 2) . '/' . substr($result, 4, 2);

这是必需的,因为您当前的数据的格式为 。一个月不能有值。2020160116



查看完整回答
反对 回复 2022-08-05
  • 1 回答
  • 0 关注
  • 101 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信