Last active
August 8, 2019 16:17
-
-
Save lenivene/53929e26e9c12bd09e57ef73fec2c6ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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