Syntax error How to get first day of week in PHP?

How to get first day of week in PHP?



To get the first day of the week in PHP, the code is as follows −

Example

 Live Demo

<?php
   $res = date('l - d/m/Y', strtotime("this week"));
   echo "First day = ", $res;
?>

Output

This will produce the following output −

First day = Monday - 09/12/2019

Example

Let us now see another example −

 Live Demo

<?php
   echo "Displaying Sunday as first day of a week...
";    $res = date('l - d/m/Y', strtotime("sunday 0 week"));    echo "First day (next week) = ", $res; ?>

Output

This will produce the following output −

Displaying Sunday as first day of a week...
First day (next week) = Sunday - 15/12/2019
Updated on: 2019-12-24T12:20:17+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements