提交Google XML站点地图的日期无效

时间:2011-11-03 21:40:17

标签: php

验证我的XML sitemap时,谷歌说:

日期无效 找到了无效的日期。请在重新提交前修正日期或格式。

我将mysql时间戳转换为:

gmdate('Y-m-d\TH:i:s', strtotime($row['modified']['value']))

1 个答案:

答案 0 :(得分:9)

'lastmod'元素的格式必须为YYYY-MM-DDYYYY-MM-DDThh:mmTZD,所以请使用:

gmdate('Y-m-d', strtotime($row['modified']['value']))

gmdate('Y-m-d\TH:i:s+00:00', strtotime($row['modified']['value']))

Read more here