Currently seeking new career opportunities in web development, particularly with Laravel, Hire Me

Getting the week commencing date and week number using PHP

David Carr

Tutorials PHP & MySQL

Using php's date function you can get all sorts of date combinations including finding the week commencing date for any date.

The following function takes a date and returns the previous Monday's date.

function last_monday($date) {
    if (!is_numeric($date))
        $date = strtotime($date);
    if (date('w', $date) == 1)
        return $date;
    else
        return strtotime('last monday',$date);
}

Using this function is simple, pass a call to the function inside a date to format the date as desired.

$date = date('Y-m'd');
echo date('jS M', last_monday($date));

To get the week number for the current date is also very simple:

echo date("W");

To get the week number for a custom date, use date combined with strtotime:

$date = '2013-01-10';
echo date('W', strtotime($date));

 

Laravel Modules Your Logo Your Logo Your Logo

Become a sponsor

Help support the blog so that I can continue creating new content!

Sponsor

My Latest Book

Modular Laravel Book - Laravel: The Modular way

Learn how to build modular applications with Laravel Find out more

Subscribe to my newsletter

Subscribe and get my books and product announcements.

Learn Laravel with Laracasts

Faster Laravel Hosting

© 2006 - 2024 DC Blog. All code MIT license. All rights reserved.