Grab all Wednesdays in a given month in PHP

前端 未结 11 1706
长发绾君心
长发绾君心 2020-12-09 18:36

This is the function I\'m trying to write:

function getWednesdays($month, $year) {
   // Returns an array of DateTimes representing all Wednesdays this month         


        
11条回答
  •  误落风尘
    2020-12-09 19:25

    With PHP5.3

    function getWednesdays($y, $m)
    {
        return new DatePeriod(
            new DateTime("first wednesday of $y-$m"),
            DateInterval::createFromDateString('next wednesday'),
            new DateTime("last day of $y-$m")
        );
    }
    

    Usage:

    foreach (getWednesdays(2010, 11) as $wednesday) {
        echo $wednesday->format("l, Y-m-d\n");
    }
    

    Output:

    Wednesday, 2010-11-03
    Wednesday, 2010-11-10
    Wednesday, 2010-11-17
    Wednesday, 2010-11-24
    

    Note that this will exclude the end date, so if the last day of $y-$m happens to be a Wednesday, it won't be in the list. You have to add a day to the end date, to include it. To include it, change the relative format in the end date to

    new DateTime("next month $y-$m-01")
    

    which will then set the end date to the first day of the next month,


    With PHP < 5.3

    function getWednesdays($y, $m)
    {
        $ts  = strtotime("first wednesday $y-$m-01");
        $end = strtotime("last wednesday $y-$m");
        $wednesdays = array();
        while($ts <= $end) {
            $wednesdays[] = $ts;
            $ts = strtotime('next wednesday', $ts);
        }
        return $wednesdays;
    }
    

    Usage:

    foreach (getWednesdays(2010, 11) as $wednesday) {
        echo date("l, Y-m-d\n", $wednesday);
    }
    

    Same output as above (Run on Codepad).

    Note that this does not work for any version prior to 5.3 due to changes in the relative formats parser. If you want to use this with PHP 5.3+ you have to change first Wednesday $y-$m-01 to first Wednesday of $y-$m-01 (mind the "of"). Also, just like in the DateTime version, the end date will not be included.


    Further reading:

    • DateTime in PHP Manual
    • Relative DateTime Formats
    • Derick Rethans: Advanced Date/Time Handling (ZendCon 10)
    • Relative item in date strings (mirror)

提交回复
热议问题