使用 PHP 从 MySQL 添加天数到当前日期
我有一个来自 MySql 的固定日期,
startDate = 07/03/2011
我想在此日期之上添加 60 天以获得结束日期。
$startDate = $result['startDate'];
$endDate = ??? + strtotime("+60 days");
echo $endDate;
根据我的研究,我知道它与 strtotime 有关,但我遇到的所有网站都基于当前工作站时间的开始日期。我的日期已经固定并在运行和获取结束日期之前输入。
帮助?提前致谢!
I have a fixed date from MySql
startDate = 07/03/2011
I wanted to add 60 days on top this date to have an endDate.
$startDate = $result['startDate'];
$endDate = ??? + strtotime("+60 days");
echo $endDate;
From my research, I know it has something do with strtotime, but all the sites I come across with based the start date from current workstation's time. My date is already fixed and entered prior to running and getting the endDate.
Help? Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
除了其他人提供的 PHP 解决方案之外,您还可以在 MySQL 内部创建
endDate
并为自己省去一些麻烦:相关文档在这里...
In addition to PHP solutions others are providing, you can create the
endDate
right inside of MySQL and save yourself some of the trouble:Relevant documentation here...
的结果:http://codepad.org/9rWnoeQb
您可以重新格式化
strtotime()
演示You could reformat the results of
strtotime()
Demo: http://codepad.org/9rWnoeQb
一天 86400 秒,乘以天数..并将其添加到当前时间。
86400 seconds in a day, times number of days.. and add it to current time.