How to get the first and last day of a month from a specific date in PHP

1 Answer

0 votes
$dt = "2019-03-11";

echo 'First day: '. date("Y-m-01", strtotime($dt)) . "<br />";
echo 'Last day: '. date("Y-m-t", strtotime($dt)); 

 
/*
run:
      
First day: 2019-03-01
Last day: 2019-03-31
     
*/

 



answered Mar 11, 2019 by avibootz
...