MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b1705/burblog.com/lottoponds.com/includes/domit/
File Upload :
Current < : /hermes/bosweb/b1705/burblog.com/lottoponds.com/includes/domit/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
?>