in reply to RE: RE: simple stupid time question
in thread simple stupid time question

Nope, you can't have a 30-day February specifically because the construct actually looks like:

if ((($year % 4) = 0) && (($year % 100) != 0)) { $feb += 1; } #leap year elsif (($year % 400) = 0) { $feb +=1; } #leap century

So, since a regular "leap year" doesn't occur at the end of a century, the two conditions are never simultaneously satisfied.

Spud Zeppelin * spud@spudzeppelin.com