Jump to content

Determine holidays


dc2000

Recommended Posts

Hi everyone:

 

 

I'm new to this forum, so please bear with me. I'm trying to write a small script to determine US holidays and change the site logo accordingly (pretty much like Google does). The problem happens with some US holidays, like Thanksgiving, that occurs on the 4th Thursday in November. How can I compute that?

 

Here's my code snippet so far:

$tm = time();
$month = int(date("n", $tm));
$day = int(date("j", $tm));
$weekday = int(date("w", $tm));

if($month == 11)
{
    //Month of November
    //Now I have to see if it is 4th Thursday of the month???
}

Link to comment
https://forums.phpfreaks.com/topic/61809-determine-holidays/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.