web-dev-qa-db-ja.com

PHPの日付の配列と比較して、最も近い日付を取得する方法

この投稿 私にとってこの質問にほぼ答えましたが、私には特定のニーズがあり、そこで探していたものが見つかりませんでした。これは私の経験のすぐ外にあります。頭を包み込むことができなかったので、本当に必要なのは正しい方向のポイントだけです。

次のような配列があるとしましょう。

array(5) { 
    [0]=> "2013-02-18 05:14:54" 
    [1]=> "2013-02-12 01:44:03" 
    [2]=> "2013-02-05 16:25:07" 
    [3]=> "2013-01-29 02:00:15" 
    [4]=> "2013-01-27 18:33:45" 
}

日付を指定する方法(たとえば、「2013-02-04 14:11:16」)が必要であり、配列内でこれに最も近い一致を判別する関数(「2013-02」)が必要です。 -05 16:25:07 "この場合)。

ヒントをいただければ幸いです。ありがとう! :)

17
user1881190

私は最良の命名規則を持っていないかもしれませんが、ここに行きます。

日付の配列と指定された日付の間の間隔を計算します。次に、「最小の」違いを見つけるために、並べ替えを行います。

$dates = array
(
    '0'=> "2013-02-18 05:14:54",
    '1'=> "2013-02-12 01:44:03",
    '2'=> "2013-02-05 16:25:07",
    '3'=> "2013-01-29 02:00:15",
    '4'=> "2013-01-27 18:33:45"
);


function find_closest($array, $date)
{
    //$count = 0;
    foreach($array as $day)
    {
        //$interval[$count] = abs(strtotime($date) - strtotime($day));
        $interval[] = abs(strtotime($date) - strtotime($day));
        //$count++;
    }

    asort($interval);
    $closest = key($interval);

    echo $array[$closest];
}

find_closest($dates, "2013-02-18 05:14:55");
25
He Hui

私があなたの質問を完全に理解しているなら、これはあなたの問題を解決するでしょう。

テスト済みコード

<?php
    $dates = array
    (
        '0' => "2013-02-18 05:14:54",
        '1' => "2013-02-12 01:44:03",
        '2' => "2013-02-05 16:25:07",
        '3' => "2013-01-29 02:00:15",
        '4' => "2013-01-27 18:33:45"
    );

    function closest($dates, $findate)
    {
        $newDates = array();

        foreach($dates as $date)
        {
            $newDates[] = strtotime($date);
        }

        echo "<pre>";
        print_r($newDates);
        echo "</pre>";

        sort($newDates);
        foreach ($newDates as $a)
        {
            if ($a >= strtotime($findate))
                return $a;
        }
        return end($newDates);
    }

    $values = closest($dates, date('2013-02-04 14:11:16'));
    echo date('Y-m-d h:i:s', $values);
?>
2
Dipesh Parmar

配列が大きく、2009-10-01から2019-10-01の期間の日付があるとします。次に、2つのアプローチを比較してみましょう。 looping-array approach vsb。 sorting-indexing-array approach

<?php 

$period = new DatePeriod(
    new DateTime('2009-10-01 00:00:00'),
    new DateInterval('P3D'),
    new DateTime('2019-10-01 00:00:00')
);

foreach($period as $date){ 
    $dates[] = $date->format('Y-m-d'); 
};


$today = '2019-08-18 13:00:15';

function custom_sort($array){
  sort($array);
  return $array;
}

function nearest_date_key($array, $today){
    //Push today to the array, sort the array, 
    //find the nearest day value of the sorted array and return key
    array_Push($array, $today);
    $sorted_dates = custom_sort($array);
    $find_today_key = array_search($today, $sorted_dates);
    $nearest_date = array_slice($sorted_dates, $find_today_key + 1, 1);
    return array_search($nearest_date[0], $array);
}


function find_closest($array, $today)
{
    //$count = 0;
    foreach($array as $day)
    {
        //$interval[$count] = abs(strtotime($date) - strtotime($day));
        $interval[] = abs(strtotime($today) - strtotime($day));
        //$count++;
    }

    asort($interval);
    $closest = key($interval);
    return $closest;
}

$start = microtime(true);
$result_a = nearest_date_key($dates, $today);
$time_elapsed_secs_a = microtime(true) - $start;

$start = microtime(true);
$result_b = find_closest($dates, $today);
$time_elapsed_secs_b = microtime(true) - $start;
?>

結果を印刷すると( http://phptester.net/

                            result  time_elapsed
loop approach (a)           1203    0.00630   
sorting index approach (b)  1203    0.00062

これは、経過した膨大な時間ですgain。待ち時間を10で割った

0
J. Doe

これを試してみてください:

$date = array(
    [0]=> "2013-02-18 05:14:54"
    [1]=> "2013-02-12 01:44:03"
    [2]=> "2013-02-05 16:25:07"
    [3]=> "2013-01-29 02:00:15"
    [4]=> "2013-01-27 18:33:45");

$baseDate = date_create('2009-10-11');
$count = count($date);
for($loop=0;$count>$loop;$loop++) {
    $datetime = date_create($date[$loop]);
    $interval = date_diff($baseDate, $datetime);
    $newDate[$interval->format('%s')] = $date[$loop];
}
ksort($newDate);
foreach($newDate as $key=>$value) {
    echo $value;
    break;
}

最初の要素が最も近い一致日になります。

注:使用する前にテストしてください。

0
Suresh Kamrushi