PHP 타임스탬프를 DateTime에 입력 이것을 Strtotime 또는 이와 유사한 유형의 값으로 변환하여 DateTime 객체에 전달하는 방법을 알고 계십니까? 가지고 있는 날짜: Mon, 12 Dec 2011 21:17:52 +0000 내가 시도한 것: $time = substr($item->pubDate, -14); $date = substr($item->pubDate, 0, strlen($time)); $dtm = new DateTime(strtotime($time)); $dtm->setTimezone(new DateTimeZone(ADMIN_TIMEZONE)); $date = $dtm->format('D, M dS'); $time = $dtm->format('g:i a'); 위의 내용은 올바르..