PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<DomElement->set_attribute()DomNode->add_namespace>
Last updated: Mon, 16 Jul 2012

DomElement->tagname()

(no version information, might be only in CVS)

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

说明

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.

返回值

Returns the name of the current DomElement node.

例子 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.




<DomElement->set_attribute()DomNode->add_namespace>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST