Created
April 5, 2016 01:02
-
-
Save madysondesigns/98eea8c547382a19dca8e913fa49305c to your computer and use it in GitHub Desktop.
Calculate years since
This file contains 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
function calc_years_since($year) { | |
$since = date("Y") - $year; | |
if ($since == 1) { | |
$since .= " year"; | |
} else { | |
$since .= " years"; | |
} | |
echo $since; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment