PHP:strtotime 对于未来的日期返回 false?
这是我放入 Eclipse 中的一些调试表达式,如果您不相信我:
"strtotime("2110-07-16 10:07:47")" = (boolean) false
"strtotime("2110-07-16")" = (boolean) false
我在我的函数中使用它,该函数返回开始日期和结束日期之间的随机日期:
public static function randomDate($start_date, $end_date, $format = DateTimeHelper::DATE_FORMAT_SQL_DATE)
{
if($start_date instanceof DateTime) $start_date = $start_date->format(DateTimeHelper::DATE_FORMAT_YMDHMS);
if($end_date instanceof DateTime) $end_date = $end_date->format(DateTimeHelper::DATE_FORMAT_YMDHMS);
// Convert timetamps to millis
$min = strtotime($start_date);
$max = strtotime($end_date);
// Generate random number using above bounds
$val = rand($min, $max);
// Convert back to desired date format
return date($format, $val);
}
知道如何让它返回正确的 UNIX 时间未来的约会?
谢谢!
here are some debug expressions i put into eclipse, if you don't believe me:
"strtotime("2110-07-16 10:07:47")" = (boolean) false
"strtotime("2110-07-16")" = (boolean) false
i'm using it in my function which returns a random date between the start and end dates:
public static function randomDate($start_date, $end_date, $format = DateTimeHelper::DATE_FORMAT_SQL_DATE)
{
if($start_date instanceof DateTime) $start_date = $start_date->format(DateTimeHelper::DATE_FORMAT_YMDHMS);
if($end_date instanceof DateTime) $end_date = $end_date->format(DateTimeHelper::DATE_FORMAT_YMDHMS);
// Convert timetamps to millis
$min = strtotime($start_date);
$max = strtotime($end_date);
// Generate random number using above bounds
$val = rand($min, $max);
// Convert back to desired date format
return date($format, $val);
}
any idea how to get it to return the right unix time for a future date?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您想使用 32 位整数日期范围之外的日期,请使用 PHP 的 dateTime 对象
If you want to work with dates that fall outside the 32-bit integer date range, then use PHP's dateTime objects
尝试将其保存在 UTC 时间 2038 年 1 月 19 日星期二 03:14:07 之前,即 32 位系统的 unix 时间戳纪元翻转之前!
手册中进行了描述
它甚至在 http://php.net/strtotime 编辑: 的 刚刚测试:通过安装 64 位操作系统和适当的 64 位版本的 php 来修复它。我想我们有足够的时间来修复一个转世的千年虫:
Try to keep it before Tue, 19 Jan 2038 03:14:07 UTC, when the unix timestamp epoch for 32 bit systems rolls over!
It's even described in the manual at http://php.net/strtotime
edit: Just tested: It's fixed by installing a 64 bit OS and appropriate 64 bit version of php. I guess we have time enough to fix a reincarnated millenium bug:
来自 PHP 手册:
另请参阅:2038 年问题 - 维基百科
From the PHP manual:
See also: Year 2038 problem - Wikipedia
您无法转换 Unix 时间翻转 (2038) 之后发生的日期
You cant convert dates that occur after the unix time rollover (2038)
简单替换 strtotime
实际帖子此处。
Simple replacement of strtotime
Actual post here.