9
PHP에서 날짜에 3 개월 추가
2012-03-26$effectiveDate 날짜를 포함 하는 변수가 있습니다 . 이 날짜에 3 개월을 추가하려고하는데 실패했습니다. 내가 시도한 것은 다음과 같습니다. $effectiveDate = strtotime("+3 months", strtotime($effectiveDate)); 과 $effectiveDate = strtotime(date("Y-m-d", strtotime($effectiveDate)) . "+3 months"); 내가 도대체 뭘 잘못하고있는 겁니까? 두 코드 모두 작동하지 않았습니다.