먼저 시간을 베이징 시간으로 설정하세요
date_default_timezone_set('PRC');
현재 시간
$curtime=date("Y-m-d H :i:s", time());
월요일의 구분은 우리가 일반적으로 알고 있는 구분과 다르기 때문에 별도로 판단해야 합니다.
if(date('D') == '월'){
지난 주:
$last_week_start=date("Y-m-d H:i:s", strtotime("지난 월요일"));
$last_week_end=date("연말 H:i:s",strtotime("이번 월요일"));
이번 주:
$this_week_start= date("연말 H:i:s",strtotime("이번 월요일"));
$this_week_end=date("연말 H:i:s",strtotime("다음 월요일"));
}else{
지난 주:
$last_week_start=date("Y-m-d H:i:s",strtotime("지난 월요일 -1주"));
$last_week_end=date("연월일 H:i:s",strtotime("이번 월요일 -1주"));
이번 주:
$this_week_start=date("연월일 H:i :s",strtotime("이번 월요일 -1주"));
$this_week_end=date("Y-m-d H:i:s",strtotime("다음 월요일"));
}
지난 달:
$last_m Month"))."-01 00:00:00";
$last_m Month"))."-01 00:00:00";
이번 달 :
$this_m 월"))."-01 00:00:00";
$this_m 월"))."-01 00:00:00";
당일:
$this_day_start=date("연월일", 시간())." 00:00:00";
$this_day_end=date("연월일",strtotime("+1일"))." 00:00:00 ";
저작권 안내: 이 글은 해당 블로거의 원본 글이므로 블로거의 허락 없이 복제할 수 없습니다.
위 내용은 내용의 측면을 포함하여 PHP가 표시하는 다양한 시간대를 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.