The first is returning the correct day, while the second is not, why is that?
Thanks in advance
<?php
echo date("l", strtotime("April 1 1966")) . "\n"; //should be Friday (correct)
echo date("l", strtotime("June 1 1970")); //should be Wednesday (incorrect, showing Monday instead)
?>