我无法让我的 RSS 提要的日期正确运行。你知道展示它的正确日期是什么吗?
我将它存储在一个名为 creation_date 的字段中,格式如下:2012-08-14 10:17:12
然后我抓住它:
$pubDate = $article[creation_date];
然后我转换它:
$pubDate= date("Y-m-d", strtotime($pubDate));
然后在我的项目标签中放置它:
<pubdate>'.date("l, F d, Y", strtotime($pubDate)).'</pubdate>
有什么我没有看到的吗?