Skip to content

Instantly share code, notes, and snippets.

@lenivene
Last active August 8, 2019 16:17
Show Gist options
  • Save lenivene/53929e26e9c12bd09e57ef73fec2c6ea to your computer and use it in GitHub Desktop.
Save lenivene/53929e26e9c12bd09e57ef73fec2c6ea to your computer and use it in GitHub Desktop.
<?php
function count_months_in_time( $timestamp ){
$time_now = time();
$months = ( ( ( date( 'Y', $timestamp ) - date( 'Y', $time_now ) ) * 12 ) + ( date( 'm', $timestamp ) - date( 'm', $time_now ) ) );
return $months;
}
echo count_months_in_time( strtotime( date( '09/08/2019' ) ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment