1,话不多说,直接贴代码。
public static function getMonday($date)
{
$times = strtotime($date);
$_w = date('w', $times) == 0 ? 6 : (date('w', $times)-1);
$mondate = date('Y-m-d',strtotime('-' . $_w . ' days', $times));
return $mondate;
}
1,话不多说,直接贴代码。
public static function getMonday($date)
{
$times = strtotime($date);
$_w = date('w', $times) == 0 ? 6 : (date('w', $times)-1);
$mondate = date('Y-m-d',strtotime('-' . $_w . ' days', $times));
return $mondate;
}