PHP:向日期添加秒数
我有 $adate;
其中包含:
Tue Jan 4 07:59:59 2011
我想向该日期添加以下内容:
$duration=674165; // in seconds
添加秒数后,我需要将结果恢复为日期格式。
我不知道我在做什么,但我得到了奇怪的结果。
注意:这两个变量都是动态的。现在它们等于给定的值,但下一个查询它们将具有不同的值。
I have $adate;
which contains:
Tue Jan 4 07:59:59 2011
I want to add to this date the following:
$duration=674165; // in seconds
Once the seconds are added I need the result back into date format.
I don't know what I'm doing, but I am getting odd results.
Note: both variables are dynamic. Now they are equal to the values given, but next query they will have different values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
如果您使用 php 5.3+,您可以使用一种新的方法来做到这一点。
If you are using php 5.3+ you can use a new way to do it.
只需使用一些不错的 PHP 日期/时间函数:
Just use some nice PHP date/time functions:
鉴于
$adate
是时间戳(如果是这种情况),您可以执行以下操作:Given the fact that
$adate
is a timestamp (if that's the case), you could do something like this:这样做:
Do this:
使用
DateTime::modify
会更容易It would be easier with
DateTime::modify
我为时区制作了这个示例,但是如果您更改某些部分,它可能会对您有所帮助:
结果:
I made this example for a timezone, but if you change some parts it may help you out:
Result:
我无法使用
strtotime()
来解决在当前时间添加动态数据/时间值的问题,这是我的解决方案:
font: https://secure.php.net/manual/en/datetime.add.php (请参阅面向对象风格,Elzo Valugi 解决方案)
(1) https://secure.php.net/manual/en/function.date.php
I have trouble with
strtotime()
to resolve my problem of add dynamic data/time value in the current timeThis was my solution:
font: https://secure.php.net/manual/en/datetime.add.php (consult Object Oriented style too, the Elzo Valugi solution)
(1) https://secure.php.net/manual/en/function.date.php