11

我正在尝试编写一个 php 脚本(或代码行)来回显两个日期之间的随机时间和日期,例如

2012-12-24 13:03

这将在我选择的 2012 年 10 月 1 日和 2013 年 1 月 1 日之间。

任何想法如何最好地做到这一点?提前致谢。

4

6 回答 6

34

简单 :) 只需选择 2 个随机日期,转换为 EPOCH,并在这 2 个值之间随机 :)

EPOCH - 自 1970 年 1 月 1 日以来的时间,以秒为单位。
您可以使用该strtotime()函数将日期字符串转换为纪元时间,并使用该date()函数使其相反。

function rand_date($min_date, $max_date) {
    /* Gets 2 dates as string, earlier and later date.
       Returns date in between them.
    */

    $min_epoch = strtotime($min_date);
    $max_epoch = strtotime($max_date);

    $rand_epoch = rand($min_epoch, $max_epoch);

    return date('Y-m-d H:i:s', $rand_epoch);
}
于 2013-01-06T21:15:41.977 回答
4

您可能想要定义一个分辨率,例如一分钟、三分钟或 15 秒或一天半或其他什么。随机性应该应用于整个周期,我在这里选择了一分钟作为示例(您的周期中有 132480 分钟)。

$start    = new Datetime('1st October 2012');
$end      = new Datetime('1st Jan 2013');
$interval = new DateInterval('PT1M'); // Resolution: 1 Minute
$period   = new DatePeriod($start, $interval, $end);
$random   = new RandomIterator($period);

list($result) = iterator_to_array($random, false) ? : [null];    

这例如给出:

class DateTime#7 (3) {
  public $date =>
  string(19) "2012-10-16 02:06:00"
  public $timezone_type =>
  int(3)
  public $timezone =>
  string(13) "Europe/Berlin"
}

你可以在这里找到RandomIterator。没有它,它将花费更长的时间(与上面的示例相比,迭代次数大约为 1.5):

$count    = iterator_count($period);
$random   = rand(1, $count);

$limited = new LimitIterator(new IteratorIterator($period), $random - 1, 1);
$limited->rewind();
$result = $limited->current();

我也尝试过几秒钟,但这需要很长时间。您可能希望首先找到一个随机日期(92 天),然后再找到其中的一些随机时间。

DatePeriod此外,我还进行了一些测试,只要您使用秒等常见分辨率,我就找不到任何使用的好处:

$start    = new Datetime('1st October 2012');
$end      = new Datetime('1st Jan 2013');

$random   = new DateTime('@' . mt_rand($start->getTimestamp(), $end->getTimestamp()));

或分钟:

/**
 * @param DateTime $start
 * @param DateTime $end
 * @param int|DateInterval $resolution in Seconds or as DateInterval
 * @return DateTime
 */
$randomTime = function (DateTime $start, DateTime $end, $resolution = 1) {

    if ($resolution instanceof DateInterval) {
        $interval   = $resolution;
        $resolution = ($interval->m * 2.62974e6 + $interval->d) * 86400 + $interval->h * 60 + $interval->s;
    }

    $startValue = floor($start->getTimestamp() / $resolution);
    $endValue   = ceil($end->getTimestamp() / $resolution);
    $random     = mt_rand($startValue, $endValue) * $resolution;

    return new DateTime('@' . $random);
};

$random = $randomTime($start, $end, 60);
于 2013-01-06T21:31:06.613 回答
3

假设您想包括 10 月 1 日,但不包括 1 月 1 日...

$start = strtotime("2012-10-01 00:00:00");
$end =  strtotime("2012-12-31 23:59:59");

$randomDate = date("Y-m-d H:i:s", rand($start, $end));

echo $randomDate;
于 2013-01-06T21:20:19.437 回答
2

太疯狂了,它可能会起作用

function randomDate($start_date, $end_date)
{
//make timetamps
$min = strtotime($start_date);
$max = strtotime($end_date);

//random date
$rand_date = rand($min, $max);

//format it
return date('Y-m-d H:i:s', $rand_date);
}
于 2013-01-06T21:20:56.760 回答
1

这里有一些代码来完成这个:

$randDate=date('Y-m-d', mt_rand(strtotime('2012-10-01'), strtotime('2013-01-01')));
于 2013-01-06T21:21:25.093 回答
0

好的,这里有东西

$date_start = strtotime('1 October 2012');
$date_end = strtotime('1 January 2013');
$rand_date = rand($date_start, $date_end);
echo(date('d.m.Y H:i', $rand_date));
于 2013-01-06T21:19:04.470 回答