You are here

function xmlrpc_date_get_xml in Drupal 4

Same name and namespace in other branches
  1. 5 includes/xmlrpc.inc \xmlrpc_date_get_xml()
  2. 6 includes/xmlrpc.inc \xmlrpc_date_get_xml()
  3. 7 includes/xmlrpc.inc \xmlrpc_date_get_xml()
1 call to xmlrpc_date_get_xml()
xmlrpc_value_get_xml in includes/xmlrpc.inc
Generate XML representing the given value.

File

includes/xmlrpc.inc, line 403

Code

function xmlrpc_date_get_xml($xmlrpc_date) {
  return '<dateTime.iso8601>' . $xmlrpc_date->year . $xmlrpc_date->month . $xmlrpc_date->day . 'T' . $xmlrpc_date->hour . ':' . $xmlrpc_date->minute . ':' . $xmlrpc_date->second . '</dateTime.iso8601>';
}