Skip to content

Instantly share code, notes, and snippets.

@sanusart
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save sanusart/fc38f50ea37c40f770a2 to your computer and use it in GitHub Desktop.

Select an option

Save sanusart/fc38f50ea37c40f770a2 to your computer and use it in GitHub Desktop.
Get seasson with PHP #php #season #date
<?php
$summer_months = array(4,5,6,7,8,9);
if(in_array(date('n'), $summer_months)) {
$season = 'Summer';
} else {
$season = 'Winter';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment