W3CDTF date in PHP
To create a date time in the W3CDTF format (used in RSS feeds).W3CDTF date format is required for RSS validation. Use following PHP code.
above code will giveĀ output like : 2009-01-28T01:49:16-07:00
No related posts.
Tags: php, rdf, rss, w3c standard, Web development, xhtml







In PHP 5 you can use a built-in constant string:
$date = date(DATE_W3C);