function xmlrpc_base64_get_xml

xmlrpc_base64_get_xml($xmlrpc_base64)

Converts an XML-RPC base 64 object into XML.

Parameters

$xmlrpc_base64: The XML-RPC base 64 object.

Return value

string An XML representation of the base 64 data as XML.

File

includes/xmlrpc.inc, line 556
Drupal XML-RPC library.

Code

function xmlrpc_base64_get_xml($xmlrpc_base64) {
  return '<base64>' . base64_encode($xmlrpc_base64->data) . '</base64>';
}

© 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/includes!xmlrpc.inc/function/xmlrpc_base64_get_xml/7.x