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; } }