Search code examples
phpdatexml-sitemap

php converting date to YYYY-MM-DD hh:mm:ssTZD


I am tring to make the google news sitemap by php script from mysql.(all the date save as timestamp in +08:00)

But how to converting date to YYYY-MM-DD hh:mm:ssTZD?

For example 1338048000 => 2012-05-26T09:00:00+08:00

echo date("Y-m-d T h:i:s",'1338048000').'+08:00';//2012-05-26 PDT 09:00:00+08:00 

Not the result what I need. And how to? Thanks.


Solution

  • How about this?

    echo date("c",'1338048000');