function xmlrpc_base64_get_xml
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.
1 call to xmlrpc_base64_get_xml()
- xmlrpc_value_get_xml in includes/
xmlrpc.inc - Generates XML representing the given value.
File
-
includes/
xmlrpc.inc, line 556
Code
function xmlrpc_base64_get_xml($xmlrpc_base64) {
return '<base64>' . base64_encode($xmlrpc_base64->data) . '</base64>';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.