The Server Pages
:: TSP Menu
- Home
- Authors
- Glossary
- RSS Feed

:: Servers
- CPanel
- Hosting
- Linux
- Windows

:: Webmaster
- Databases
- Design
- PHP
- Search Engines

:: Scripts
- Scripts

:: Documentation
- PHP Manual

:: Other
- Errors & Solutions
- TechPunt
- Wojjie

search for in the

DomNode::add_namespace> <DomElement::set_attribute
[edit] Last updated: Sat, 12 May 2012

view this page in

DomElement::tagname

(PHP 4 >= 4.1.0)

DomElement::tagname Returns the name of the current element

Description

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.

Return Values

Returns the name of the current DomElement node.

Examples

Example #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.



add a note add a note User Contributed Notes DomElement::tagname
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites