Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/XmlRpc/Value/String.php
Go to the documentation of this file.
00001 <?php
00027 require_once 'Zend/XmlRpc/Value/Scalar.php';
00028 
00035 class Zend_XmlRpc_Value_String extends Zend_XmlRpc_Value_Scalar
00036 {
00037 
00043     public function __construct($value)
00044     {
00045         $this->_type = self::XMLRPC_TYPE_STRING;
00046 
00047         // Make sure this value is string and all XML characters are encoded
00048         $this->_value = (string)$value;
00049     }
00050 
00056     public function getValue()
00057     {
00058         return (string)$this->_value;
00059     }
00060 }
 All Data Structures Namespaces Files Functions Variables Enumerations