Skip to content

Instantly share code, notes, and snippets.

@myano
Created August 27, 2015 14:25
Show Gist options
  • Select an option

  • Save myano/334cd02891b08056656c to your computer and use it in GitHub Desktop.

Select an option

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