How to find the date of a day of the week from a date using PHP?

后端 未结 9 1812
说谎
说谎 2020-11-27 03:59

If I\'ve got a $date YYYY-mm-dd and want to get a specific $day (specified by 0 (sunday) to 6 (saturday)) of the week that YYYY-

9条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-27 04:41

    You can use the date() function:

    date('w'); // day of week
    

    or

    date('l'); // dayname
    

    Example function to get the day nr.:

    function getWeekday($date) {
        return date('w', strtotime($date));
    }
    
    echo getWeekday('2012-10-11'); // returns 4
    

提交回复
热议问题