date_iso8601

7 common.inc date_iso8601($date)
8 common.inc date_iso8601($date)

Returns an ISO8601 formatted date based on the given date.

Callback for use within hook_rdf_mapping() implementations.

Parameters

$date: A UNIX timestamp.

Return value

string An ISO8601 formatted date.

Related topics

5 string references to 'date_iso8601'

File

includes/common.inc, line 1969
Common functions that many Drupal modules will need to reference.

Code

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);
}
Login or register to post comments