[ Index ]
 

Code source de Joomla 1.0.13

Accédez au Source d'autres logiciels libres

title

Body

[fermer]

/includes/domit/ -> dom_xmlrpc_struct.php (source)

   1  <?php
   2  /**
   3  * dom_xmlrpc_object wraps a PHP associative array as an XML-RPC struct
   4  * @package dom-xmlrpc
   5  * @copyright (C) 2004 John Heinstein. All rights reserved
   6  * @license http://www.gnu.org/copyleft/lesser.html LGPL License
   7  * @author John Heinstein <johnkarl@nbnet.nb.ca>
   8  * @link http://www.engageinteractive.com/dom_xmlrpc/ DOM XML-RPC Home Page
   9  * DOM XML-RPC is Free Software
  10  **/
  11  
  12  /**
  13  * Wraps a PHP associative array as an XML-RPC struct
  14  *
  15  * @package dom-xmlrpc
  16  * @author John Heinstein <johnkarl@nbnet.nb.ca>
  17  */
  18  class dom_xmlrpc_struct {
  19      /** @var object A numeric associative array holding the data */
  20      var $numericAssociativeArray;
  21  
  22      /**
  23      * Constructor
  24      * @param object A reference to the associative array
  25      */
  26  	function dom_xmlrpc_struct($numericAssociativeArray) {
  27          $this->numericAssociativeArray = $numericAssociativeArray;
  28      } //dom_xmlrpc_struct
  29  
  30      /**
  31      * Returns the wrapped associative array
  32      * @return array A reference to the associative array
  33      */
  34  	function getStruct() {
  35          return $this->numericAssociativeArray;
  36      } //getStruct
  37  } //dom_xmlrpc_struct
  38  ?>


Généré le : Wed Nov 21 14:43:32 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics