_type = self::XMLRPC_TYPE_STRING; // Make sure this value is string and all XML characters are encoded $this->_value = (string)$value; } /** * Return the value of this object, convert the XML-RPC native string value into a PHP string * * @return string */ public function getValue() { return (string)$this->_value; } }