Prado\Xml\TXmlDocument::__toString PHP Method

__toString() public method

$document = new TXmlDocument(); $document->TagName = 'root'; echo $document; or $document = new TXmlDocument(); $document->TagName = 'root'; $xml = (string)$document;
public __toString ( ) : string
return string string representation of this document
    public function __toString()
    {
        return $this->saveToString();
    }