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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T13:10:04+00:00 2026-06-07T13:10:04+00:00

My server uses an older version of PHP, so I unfortunately can’t use the

  • 0

My server uses an older version of PHP, so I unfortunately can’t use the $datetime1->diff($datetime2) method.

I am currently using the following code, but it doesn’t really work:

$from = explode("-",date("Y-m-d",$recurring_invoices->start_date));
$to = explode("-",date("Y-m-d",$to_time));
$months = ($to[0]-$from[0])*12+$to[1]-$from[1];

It will calculate July 30th to June 1st as one whole month. It should only count dates from July 1st to June 1st as a whole month.

I noticed there was a MYSQL TIMESTAMPDIFF function, but I can’t seem to get that to work either.

$query = "SELECT TIMESTAMPDIFF(MONTH,'$recurring_invoices->start_date','$from_time')";
print_r($this->queryResult($query));

or

$query = "SELECT TIMESTAMPDIFF(MONTH, from_date, to_date) FROM agenda";
print_r($this->queryResult($query));

Your help is much appreciated!

  • 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-07T13:10:06+00:00Added an answer on June 7, 2026 at 1:10 pm

    I think this should work, but it is untested now tested and fixed:

    list($startYear, $startMonth, $startDay) = explode('-', date('Y-n-j', $recurring_invoices->start_date));
    list($endYear, $endMonth, $endDay) = explode('-', date('Y-n-j', $to_time));
    
    $months = 0;
    $months += ($endYear-$startYear) * 12;
    $months += $endMonth - $startMonth;
    if ($startDay > $endDay) {
      $months -= 1;
    }
    
    echo $months;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I like CKEditor and my server uses PHP. I want to use CKEditor to
I have a question about PHP's fopen() function (using php://output). Server A uses this
Say a stored procedure on MSSQL Server uses an SQL transaction using BEGIN TRANSACTION/COMMIT
We use a software which uses Sql server 2005 as back-end. The problem is
I'm creating a test server for a new client that has and older version
I currently have a web server running PHP 5.2.13 and have recently been told:
I'm currently working with WebSockets and a PHP server: it works very well with
I have a http server that uses the module HTTP::AppServer from cpan. I can
I use CodeIgniter 2.1 and my production server was updated to PHP 5.4.3-1, and
My server uses port#1988 But I don't see any option in connection wizard where

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.