Ad Code

Get Last week date ranges in php, week Monday to sunday

<?php
 echo date("Y-m-d", strtotime("last week monday"));
 echo "<br>";
 echo date("Y-m-d", strtotime("last sunday"));
?>

Post a Comment

0 Comments