IXR_Base64::getXml() WordPress Method
The IXR_Base64::getXml() method is a simple way to get an XML representation of a base64 string. This can be useful when working with XML documents that contain base64 data.
IXR_Base64::getXml() #
Contents
Source
File: wp-includes/IXR/class-IXR-base64.php
function getXml() { return '<base64>'.base64_encode($this->data).'</base64>'; }
Expand full source codeCollapse full source codeView on TracView on GitHub