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

  • Home
  • SEARCH
  • 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 6920447
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:08:54+00:00 2026-05-27T10:08:54+00:00

Possible Duplicate: Calculate number of days between two given dates Is there a way

  • 0

Possible Duplicate:
Calculate number of days between two given dates

Is there a way to calculate the number of days between the current date and a specific month?

For example if the current date is March 25th 2011 and I want PHP to calculate the days between now and September 5th 2010.

Is there a function available for this?

EDIT

Also, I would like the year to be dynamic (so I don’t have to define it) – so if the present date is September 20th 2010 it knows to count the same year – whilst if it’s January 7th 2009 it knows that it needs to calculate the number of days between Jan 7th 2009 and September 5th 2008.

  • 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-05-27T10:08:55+00:00Added an answer on May 27, 2026 at 10:08 am

    Your edit makes the question more interesting: how to find days since the nearest past September 5th. Here is one of many approaches:

    $input=$argv[1];    //"now" for now.
    
    $base=strtotime($input);
    
    $t=strtotime("September 5");    //Defaults to current year
    
    while(true){
        echo "t=".date("Y-m-d",$t)."\n";
        $diff=$base-$t;
        if($diff>=0)break;
        //If diff is -ve, $t is still in future, so go back one year
        $t=strtotime("-1 year",$t);
        }
    
    echo "Sep 5th is ".floor($diff/86400)." days before $input.\n";
    

    It is a commandline script, so you can test it like this:php test.php now gives “Sep 5th is 98 days before now.” while php test.php 2000-01-01 gives “Sep 5th is 118 days before 2000-01-01.”
    It does not support future dates though: php test.php 2020-12-31 gives “Sep 5th is 3405 days before 2020-12-31.”

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How to calculate the number of days between two dates using javascript
Possible Duplicate: How to calculate the difference between two dates using PHP? I have
Possible Duplicate: how to calculate difference between two dates using java I'm trying something
Possible Duplicate: How to calculate the date difference between 2 dates using php Hi,,
Possible Duplicate: How to calculate the difference between two dates using PHP? How to
Possible Duplicates: Difference between dates How to calculate the date difference between 2 dates
Possible Duplicate: How to calculate how many years passed since a given date in
Possible Duplicate: Showing Difference between two datetime values in hours Hi, is there an
Possible Duplicate: Calculating the Difference Between Two Java Date Instances In Java, I want
Possible Duplicate: Calculate Years, Months, weeks and Days How do I calculate difference in

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.