Warning: file_put_contents(): Only -1 of 130 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
DomElement->tagname() set_attribute()"HREF="function.domelement-set-attribute.html"> add_namespace"HREF="function.domnode-add-namespace.html"> Manuál PHP Předcházející Další (no version i... add_namespace"HREF="function.domnode-add-namespace.html"> Manuál PHP Předcházející Další (no version i..."/>
Forum und email
DomElement->tagname()

DomElement->tagname()

(no version information, might be only in CVS)

DomElement->tagname() --  Returns the name of the current element

Popis

class DomElement {

string 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.

Návratové hodnoty

Returns the name of the current DomElement node.

Příklady

Příklad 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.