웹/php1 PHP 날짜 계산하기(하루전, 한달전) php를 이용해 문자 형태의 날짜를 계산 합니다. 사용 내장 함수 date ( string $format [, int $timestamp = time() ] ) : string strtotime ( string $datetime [, int $now = time() ] ) : int 현재시간 $now = date('Y-m-d H:i:s',time()); echo $now; //2020-09-17 12:00:00 날짜 계산 echo date('Y-m-d H:i:s',strtotime($now."-90 day")); // -90일 echo date('Y-m-d H:i:s',strtotime($now."-3 month")); // -3달 echo date('Y-m-d H:i:s',strtotime($now.".. 2020. 9. 17. 이전 1 다음