PHP Doku:: Returns the name of the current element - function.domelement-tagname.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationDOM-XMLDOM-XML-FunktionenDomElement->tagname

Ein Service von Reinhard Neidl - Webprogrammierung.

DOM-XML-Funktionen

<<DomElement->set_attribute

DomNode->add_namespace>>

DomElement->tagname

(PHP 4 >= 4.1.0)

DomElement->tagname Returns the name of the current element

Beschreibung

string DomElement::tagname ( void )

Returns the name of the current node. Calling this function is the same as accessing the tagname property, or calling DomNode->node_name on the current node.

Rückgabewerte

Returns the name of the current DomElement node.

Beispiele

Beispiel #1 Getting the node name

<?php

include("example.inc");

if (!
$dom domxml_open_mem($xmlstr)) {
    echo 
"Error while parsing the document\n";
    exit;
}

$root $dom->document_element();
echo 
$root->tagname();   // chapter
echo $root->tagname;     // chapter
echo $root->node_name(); // chapter


?>

Migrating to PHP 5

Use the tagName property of the DOMElement object.


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)