HEX
Server: nginx/1.28.1
System: Linux vmi1787581.contaboserver.net 5.15.0-168-generic #178-Ubuntu SMP Fri Jan 9 19:05:03 UTC 2026 x86_64
User: vedanthasoft_usr62 (1016)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/vedanthasoft_usr62/data/www/vedanthasoftware.com/wp-includes/IXR/class-IXR-base64.php
<?php

/**
 * IXR_Base64
 *
 * @package IXR
 * @since 1.5.0
 */
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>';
    }
}