php 获取制定月的最后一天与第一天

$sStr = '2021-12-08';
$sStartDt = date('Y-m-01', strtotime($sStr));
$sLastDt = date('Y-m-d', strtotime($sStr . ' last day of this month'));

你可能感兴趣的:(PHP,php,开发语言,后端)