You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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>';
- }
- }
|