|
Moodle
2.2.1
http://www.collinsharper.com
|
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 }