最佳答案
你知道我如何将它转换成 strtotime 或者类似的值传递到 日期时间对象中吗?
我的日期:
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');
以上内容是不正确的。如果我循环了很多不同的日期,它们都是相同的日期。