PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

DOMNamedNodeMap->getNamedItemNS()> <DOMImplementation->hasFeature()
Last updated: Sat, 24 Mar 2007

view this page in

DOMNamedNodeMap->getNamedItem()

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

DOMNamedNodeMap->getNamedItem() — Retrieves a node specified by name

Popis

class DOMNamedNodeMap {
DOMNode getNamedItem ( string $name )
}

Retrieves a node specified by its nodeName.

Seznam parametrů

name

The nodeName of the node to retrieve.

Návratové hodnoty

A node (of any type) with the specified nodeName, or NULL if no node is found.

Viz také

DOMNamedNodeMap->getNamedItemNS()



add a note add a note User Contributed Notes
DOMNamedNodeMap->getNamedItem()
franp at free dot fr
03-Mar-2006 07:28
Basic example of use :

<?xml version="1.0" encoding="UTF-8"?>
<racine version="2.0a">
  <article/>
</racine>

<?php
(...)
 echo
$doc->documentElement->attributes->getNamedItem("version")->nodeValue;

// returns "2.0a"
?>

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