Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8071095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T13:35:44+00:00 2026-06-05T13:35:44+00:00

I have the array of dates in Y-m-d H:i:s format like: array(5) { [0]=>

  • 0

I have the array of dates in Y-m-d H:i:s format like:

array(5) { 
    [0]=> string(19) "2012-06-11 08:30:49" 
    [1]=> string(19) "2012-06-07 08:03:54" 
    [2]=> string(19) "2012-05-26 23:04:04" 
    [3]=> string(19) "2012-05-27 08:30:00" 
    [4]=> string(19) "2012-06-08 08:30:55" 
}

I would like to know the most recent date.

In other words, today is June 13th 2012, which datetime is closest to today’s date?

From my sample array, I am expecting 2012-06-11 08:30:49.

How can I do that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T13:35:46+00:00Added an answer on June 5, 2026 at 1:35 pm

    Do a loop, convert the values to date, and store the most recent, in a var.

    $mostRecent= 0;
    foreach($dates as $date){
      $curDate = strtotime($date);
      if ($curDate > $mostRecent) {
         $mostRecent = $curDate;
      }
    }
    

    something like that… you get the idea
    If you want most recent BEFORE today :

    $mostRecent= 0;
    $now = time();
    foreach($dates as $date){
      $curDate = strtotime($date);
      if ($curDate > $mostRecent && $curDate < $now) {
         $mostRecent = $curDate;
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have take one string array which stored date in format of 2012-04-26T08:38:00. i
I have a given string array of date, the format is dd/mm/yyyy . I
I have an array that I would like to sort using a date field
I have an array of dates whose format is like this: 10/15/2005 or 2/10/2011.
I have a multi dimensional array, like this: array('name' => array('title'=>'Title','date'=>'Created')) I store it
I have a large text containing many dates formatted like this: 10 april 2012,
I have an array of dates: from and to 's. i.e: array( [0] =>
Hi guys i have an array that is populated with dates Array ( [0]
I got problem for sorting array of nsdate. so i have array of date
I have an array of Ruby Date objects. How can I find the newest

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.