Skip to content

Instantly share code, notes, and snippets.

@u-mulder
Last active July 1, 2017 16:40
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 u-mulder/ef067b44c83da584166ea94304e6124a to your computer and use it in GitHub Desktop.
Save u-mulder/ef067b44c83da584166ea94304e6124a to your computer and use it in GitHub Desktop.
Число дней в произвольном месяце произвольного года
<?php
$year = 2016;
foreach (range(1,12) as $month) {
var_dump(getDaysCount($month, $year));
}
function getDaysCount($month, $year)
{
return date('t', strtotime('01.' . $month . '.' . $year));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment