PHP

[PHP] 날짜 계산 date()

chsr 2021. 7. 6. 09:23
728x90
반응형

■ PHP 날짜 계산 date()


■ 사용법

<? 
  date("Y-m-d H:i:s", strtotime("-1 day"));	// 어제 
  date("Y-m-d H:i:s", strtotime("now"));	// 현재 
  date("Y-m-d H:i:s", strtotime("+1 day"));	// 내일 
  date("Y-m-d H:i:s", strtotime("+1 week"));	// 일주일 후 
  date("Y-m-d H:i:s", strtotime("-1 month"));	// 한달 전 
  date("Y-m-d H:i:s", strtotime("+1 month"));	// 다음달 
  date("Y-m-d H:i:s", strtotime("+1 week 2 days 3 hours 4 seconds")); // 1주 2일 3시간 4초 후 
  date("Y-m-d H:i:s", strtotime("next Thursday"));	// 다음주 목요일 
  date("Y-m-d H:i:s", strtotime("last Monday"));	// 지난 월요일 
  date("Y-m-d H:i:s", strtotime("1 September 2021"));	// 2021년 9월 1일 
?>
728x90
반응형