/** * Return the tree nodes in a simple text * @param DOMNode $node * @return DOMNode */ public static function innerText($node) { $doc = XmlUtil::CreateDocumentFromNode($node); return self::CopyChildNodesFromNodeToString($doc); }