Google Sitemap Date Format

前端 未结 10 1760
情书的邮戳
情书的邮戳 2021-02-12 09:35

I need date format for sitemaps in php.

How can i do that ?

Is this output right ?

2012-08-02EEST18:01:18+03:00
         


        
10条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-12 10:29

    I know the question was about PHP, but I found this page googling for Node/JavaScript. So the closest equivalent is Date.toISOString():

    var d = new Date();
    d.toISOString(); // "2017-04-19T07:23:16.040Z"
    

提交回复
热议问题