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 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

Ask A Question

Stats

  • Questions 69k
  • Answers 69k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Actually, I think access based on an index will be… May 11, 2026 at 12:28 pm
  • added an answer NSCalendar *calendar = [NSCalendar currentCalendar]; NSDateComponents *components = [calendar components:NSMonthCalendarUnit… May 11, 2026 at 12:27 pm
  • added an answer Lua appears to fit your needs: Lua (pronounced /ˈluː.ə/ LOO-uh)… May 11, 2026 at 12:27 pm

Related Questions

What is the best way to localise a date format descriptor? As anyone from
What is the best method for date of birth selector? 3 text inputs (month
Possible Duplicate: Internationalization in SSRS We use SQL Server Reporting Services for our web

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.