Skip to content

Instantly share code, notes, and snippets.

@myano
Created August 27, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myano/334cd02891b08056656c to your computer and use it in GitHub Desktop.
Save myano/334cd02891b08056656c to your computer and use it in GitHub Desktop.
<?php
$today = date('Ymd');
$this_year = date('Y');
if ($today <= $this_year . "0901") {
echo $this_year;
}
else {
echo $this_year + 1;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment