function xmlrpc_base64

Returns an XML-RPC base 64 object.

Parameters

$data: Base 64 data to store in returned object.

Return value

object An XML-RPC base 64 object.

2 calls to xmlrpc_base64()
XMLRPCValidator1IncTestCase::testValidator1 in modules/simpletest/tests/xmlrpc.test
Run validator1 tests.
xmlrpc_test_manyTypesTest in modules/simpletest/tests/xmlrpc_test.module

File

includes/xmlrpc.inc, line 540

Code

function xmlrpc_base64($data) {
    $xmlrpc_base64 = new stdClass();
    $xmlrpc_base64->is_base64 = TRUE;
    $xmlrpc_base64->data = $data;
    return $xmlrpc_base64;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.