Ejemplo n.º 1
0
 static function xmlDumpNodeClose($node)
 {
     if (self::xmlIsTextNode($node)) {
         throw new AnwUnexpectedException("xmlDumpNodeOpen on text node");
     }
     $sReturn = '</' . $node->nodeName . '>';
     $sReturn = AnwXml::prepareXmlValueFromXml($sReturn);
     return $sReturn;
 }