class IXR_Base64 {}
Contents
Methods
- __construct — PHP5 constructor.
- getXml
- IXR_Base64 — PHP4 constructor.
Source
File: wp-includes/IXR/class-IXR-base64.php
.
View all references
class IXR_Base64
{
var $data;
/**
* PHP5 constructor.
*/
function __construct( $data )
{
$this->data = $data;
}
/**
* PHP4 constructor.
*/
public function IXR_Base64( $data ) {
self::__construct( $data );
}
function getXml()
{
return '<base64>'.base64_encode($this->data).'</base64>';
}
}
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |