One Hat Cyber Team
Your IP :
216.73.216.80
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
sam
/
public_html
/
web
/
includes
/
domit
/
View File Name :
dom_xmlrpc_struct.php
<?php /** * dom_xmlrpc_object wraps a PHP associative array as an XML-RPC struct * @package dom-xmlrpc * @copyright (C) 2004 John Heinstein. All rights reserved * @license http://www.gnu.org/copyleft/lesser.html LGPL License * @author John Heinstein <johnkarl@nbnet.nb.ca> * @link http://www.engageinteractive.com/dom_xmlrpc/ DOM XML-RPC Home Page * DOM XML-RPC is Free Software **/ /** * Wraps a PHP associative array as an XML-RPC struct * * @package dom-xmlrpc * @author John Heinstein <johnkarl@nbnet.nb.ca> */ class dom_xmlrpc_struct { /** @var object A numeric associative array holding the data */ var $numericAssociativeArray; /** * Constructor * @param object A reference to the associative array */ function dom_xmlrpc_struct($numericAssociativeArray) { $this->numericAssociativeArray = $numericAssociativeArray; } //dom_xmlrpc_struct /** * Returns the wrapped associative array * @return array A reference to the associative array */ function getStruct() { return $this->numericAssociativeArray; } //getStruct } //dom_xmlrpc_struct ?>