Join WhatsApp ChannelJoin Now

How to display current week date in PHP

This post was last updated on December 9th, 2023 at 06:57 am

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