DomNode->node_name

(No version information available, might be only in CVS)

DomNode->node_name — Returns name of node

Описание

string DomNode->node_name ( void )

Returns name of the node. The name has different meanings for the different types of nodes as illustrated in the following table.

Meaning of value
Type Meaning
DomAttribute value of attribute
DomAttribute  
DomCDataSection #cdata-section
DomComment #comment
DomDocument #document
DomDocumentType document type name
DomElement tag name
DomEntity name of entity
DomEntityReference name of entity reference
DomNotation notation name
DomProcessingInstruction target
DomText #text

[an error occurred while processing the directive]

Коментарии

Loop through children making sure that the children are not text nodes. 
<pre>

$moduleDoc = domxml_open_file("main_module_defs.xml");
$moduleDefinitionXPath = xpath_new_context($moduleDoc);
$dConvsNodeSet = xpath_eval($moduleDefinitionXPath, "//modules/module[@name='search']/dConvs");
$children = $dConvsNodeSet->nodeset[0]-> child_nodes();
$dTotal = count($children);
for ($i=0;$i<$dTotal;$i++){
    $curNode = $children[$i];
    if($curNode->node_name() != "#text"){
        echo "This are probably TextNodes...";    }
}
</pre>

--
http://artattack.to
2002-12-30 12:33:18
http://php5.kiev.ua/manual/ru/function.domnode-node-name.html

    Поддержать сайт на родительском проекте КГБ