Get the First or Last Friday in a Month

后端 未结 12 2261
有刺的猬
有刺的猬 2020-11-29 12:12

I\'m trying to write a calendar function like this

function get_date($month, $year, $week, $day, $direction)
{
    ....
}

$week

相关标签:
12条回答
  • 2020-11-29 12:34

    No need for calculations or loops - this is very easy to do with strtotime():

    Find the the Nth or Last occurrence of a particular day of a particular a month:

    /////////////////////////////////////////////////////////////////
    // Quick Code
    /////////////////////////////////////////////////////////////////
    
    // Convenience mapping.
    $Names = array( 0=>"Sun", 1=>"Mon", 2=>"Tue", 3=>"Wed", 4=>"Thu", 5=>"Fri", 6=>"Sat" );
    
    // Specify what we want
    // In this example, the Second Monday of Next March
    $tsInMonth = strtotime('March');
    $Day = 1;
    $Ord = 2;
    
    // The actual calculations
    $ThisMonthTS = strtotime( date("Y-m-01", $tsInMonth ) );
    $NextMonthTS = strtotime( date("Y-m-01", strtotime("next month", $tsInMonth) ) );
    $DateOfInterest = (-1 == $Ord) 
        ? strtotime( "last ".$Names[$Day], $NextMonthTS ) 
        : strtotime( $Names[$Day]." + ".($Ord-1)." weeks", $ThisMonthTS ); 
    
    
    /////////////////////////////////////////////////////////////////
    // Explanation
    /////////////////////////////////////////////////////////////////
    
    // Specify the month of which we are interested.
    // You can use any timestamp inside that month, I'm using strtotime for convenience.
    $tsInMonth = strtotime('March');
    
    // The day of interest, ie: Friday.  
    // It can be 0=Sunday through 6=Saturday (Like 'w' from date()).
    $Day = 5;
    
    // The occurrence of this day in which we are interested.  
    // It can be 1, 2, 3, 4 for the first, second, third, and fourth occurrence of the day in question in the month in question.
    // You can also use -1 to fine the LAST occurrence.  That will return the fifth occurrence if there is one, else the 4th.
    $Ord = 3;
    
    ////////////////////////////////////////////////////////////////
    // We now have all the specific values we need.
    // The example values above specify the 3rd friday of next march
    ////////////////////////////////////////////////////////////////
    
    // We need the day name that corresponds with our day number to pass to strtotime().
    // This isn't really necessary = we could just specify the string in the first place, but for date calcs, you are more likely to have the day number than the string itself, so this is convenient.
    $Names = array( 0=>"Sun", 1=>"Mon", 2=>"Tue", 3=>"Wed", 4=>"Thu", 5=>"Fri", 6=>"Sat" );
    
    // Calculate the timestamp at midnight of the first of the month in question.
    // Remember $tsInMonth is any date in that month.
    $ThisMonthTS = strtotime( date("Y-m-01", $tsInMonth ) );
    
    // Calculate the timestamp at midnight of the first of the FOLLOWING month.
    // This will be used if we specify -1 for last occurrence.
    $NextMonthTS = strtotime( date("Y-m-01", strtotime("next month", $tsInMonth) ) );
    
    // Now we just format the values a bit and pass them to strtotime().
    // To find the 1,2,3,4th occurrence, we work from the first of the month forward.
    // For the last (-1) occurence,work we work back from the first occurrence of the following month.
    $DateOfInterest = (-1 == $Ord) ?
        strtotime( "last ".$Names[$Day], $NextMonthTS ) : // The last occurrence of the day in this month.  Calculated as "last dayname" from the first of next month, which will be the last one in this month. 
        strtotime( $Names[$Day]." + ".($Ord-1)." weeks", $ThisMonthTS ); // From the first of this month, move to "next dayname" which will be the first occurrence, and then move ahead a week for as many additional occurrences as you need.
    
    0 讨论(0)
  • 2020-11-29 12:39

    PHP's built-in time functions make this simple.

    http://php.net/manual/en/function.strtotime.php

    // Get first Friday of next month.
    $timestamp = strtotime('first fri of next month');
    
    // Get second to last Friday of the current month.
    $timestamp = strtotime('last fri of this month -7 days');
    
    // Format a timestamp as a human-meaningful string.
    $formattedDate = date('F j, Y', strtotime('first wed of last month'));
    

    Note that we always want to make sure that we've defined the correct timezone for use with strtotime so that PHP has an understanding of where to compute the timestamp for relative to what time zone the machine thinks it's in.

    date_default_timezone_set('America/New_York');
    $formattedDate = date('F j, Y', strtotime('first wed of last month +1 week'));
    
    0 讨论(0)
  • 2020-11-29 12:40

    strtotime() can help you. e.g.

    <?php
    $tsFirst = strtotime('2009-04-00 next friday');
    $tsLast = strtotime('2009-05-01 last friday');
    echo date(DATE_RFC850, $tsFirst), " | ", date(DATE_RFC850, $tsLast);
    prints
    Friday, 03-Apr-09 00:00:00 CEST | Friday, 24-Apr-09 00:00:00 CEST

    0 讨论(0)
  • 2020-11-29 12:40
    echo date('Y-m-d',strtotime('last friday'));
    
    0 讨论(0)
  • 2020-11-29 12:43

    Just find out what the first and last day of the month in question is (i.e. May 1, 2009 is a Friday and May 31, 2009 is a Sunday) I believe most PHP functions use Monday=0, Sunday=6, thus Friday=4, so you know that Sunday (6) - Friday (4) = 2, then 31-2 = 29, meaning the last friday of this month is on the 29th. For the first Friday, if the number is negative, add 7, if the number is 0, the month starts on Friday.

    0 讨论(0)
  • 2020-11-29 12:47

    The same can be accomplished very elegantly using the DateTime class.

    $time_zone = new DateTimeZone('Europe/Ljubljana');
    
    $first_friday_of_this_month = new DateTime('first Friday of this month', $time_zone);
    $last_friday_of_this_month = new DateTime('last Friday of this month', $time_zone);
    
    echo $first_friday_of_this_month->format('Y-m-d');  # 2015-11-06
    echo $last_friday_of_this_month->format('Y-m-d');  # 2015-11-27
    
    0 讨论(0)
提交回复
热议问题