How to display current week date in PHP

Hi Dev,

Today, i we will show you how to display current week date in php. This article will give you simple example of how to display current week date in php. you will how to display current week date in php. In this article, we will implement a how to display current week date in php.

So let’s follow few step to create example of how to display current week date in php.

Example

<?php
    $date = date('Y-m-d');
    echo $date;
?>

output

2022-01-20

I hope it will assist you…

Recommended Posts