date_iso8601($date)
Returns an ISO8601 formatted date based on the given date.
$date: A UNIX timestamp.
string An ISO8601 formatted date.
function date_iso8601($date) { // The DATE_ISO8601 constant cannot be used here because it does not match // date('c') and produces invalid RDF markup. return date('c', $date); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!common.inc/function/date_iso8601/8.1.x