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 91725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:04:30+00:00 2026-05-10T23:04:30+00:00

What is the best (date format independent way) in PHP to calculate difference in

  • 0

What is the best (date format independent way) in PHP to calculate difference in days between two dates in specified format.

I tried the following function:

function get_date_offset($start_date, $end_date) {   $start_time = strtotime($start_date);   $end_time = strtotime($end_date);   return round(($end_time-$start_time)/(3600*24)); } 

It works ok on linux box, but when running under windows strtotime returns ”.

EDIT:

Input date is in mm/dd/yyyy format, but I would like to make it accept $format as a parameter.

I need only difference in days.

  • 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. 2026-05-10T23:04:30+00:00Added an answer on May 10, 2026 at 11:04 pm

    If you do not want or you cannot use Zend Framework or Pear package try this function i hope this would help:

    function dateDifference($date1, $date2) {     $d1 = (is_string($date1) ? strtotime($date1) : $date1);     $d2 = (is_string($date2) ? strtotime($date2) : $date2);      $diff_secs = abs($d1 - $d2);     $base_year = min(date('Y', $d1), date('Y', $d2));      $diff = mktime(0, 0, $diff_secs, 1, 1, $base_year);      return array     (         'years'         => abs(substr(date('Ymd', $d1) - date('Ymd', $d2), 0, -4)),         'months_total'  => (date('Y', $diff) - $base_year) * 12 + date('n', $diff) - 1,         'months'        => date('n', $diff) - 1,         'days_total'    => floor($diff_secs / (3600 * 24)),         'days'          => date('j', $diff) - 1,         'hours_total'   => floor($diff_secs / 3600),         'hours'         => date('G', $diff),         'minutes_total' => floor($diff_secs / 60),         'minutes'       => (int) date('i', $diff),         'seconds_total' => $diff_secs,         'seconds'       => (int) date('s', $diff)     ); } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am wondering what would be the best date and time format that php
What is best way to convert date from JavaScript string in format YYYYMMDD to
What would be the best way to convert a mysql date format date into
How can I best check if the following date (format dd/mm/yyyy) is in the
Possible Duplicate: Best way to validate date string format via jQuery Date validation :
What is the best way to localise a date format descriptor? As anyone from
What is the best way to randomize the time part for a DATE column,
What is the best way to retrieve the current date? Currently I am storing
what is the best way to keep a child control up to date for
What's the best way to set an expiration date for the JSESSIONID cookie sent

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.