Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/XmlRpc/Value/BigInteger.php
Go to the documentation of this file.
00001 <?php
00027 require_once 'Zend/XmlRpc/Value/Integer.php';
00028 
00029 
00037 class Zend_XmlRpc_Value_BigInteger extends Zend_XmlRpc_Value_Integer
00038 {
00042     protected $_integer;
00043 
00047     public function __construct($value)
00048     {
00049         require_once 'Zend/Crypt/Math/BigInteger.php';
00050         $this->_integer = new Zend_Crypt_Math_BigInteger();
00051         $this->_value = $this->_integer->init($this->_value);
00052 
00053         $this->_type = self::XMLRPC_TYPE_I8;
00054     }
00055 
00061     public function getValue()
00062     {
00063         return $this->_integer;
00064     }
00065 }
 All Data Structures Namespaces Files Functions Variables Enumerations