H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
/
home
/
ymswebso
/
public_html
/
triphooks
/
wp-includes
/
IXR
/
Nama File / Folder
Size
Action
class-IXR-base64.php
0.404KB
Hapus
Edit
Rename
class-IXR-value.php
3.701KB
Hapus
Edit
Rename
<=Back
<?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>'; } }
Liking