I need date format for sitemaps in php.
How can i do that ?
Is this output right ?
<lastmod>2012-08-02EEST18:01:18+03:00</lastmod>
If you have the timestamp you can format the date correctly like this:
<lastmod><?php echo date('c', $timestamp); ?></lastmod>
Time stamp could be time()
(for current time) or some other method of fetching a unix tiemstamp like strtotime()