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

search for in the

DOMNamedNodeMap::getNamedItemNS> <DOMNamedNodeMap
[edit] Last updated: Tue, 21 May 2013

view this page in

DOMNamedNodeMap::getNamedItem

(PHP 5)

DOMNamedNodeMap::getNamedItem Retrieves a node specified by name

Descrizione

DOMNode DOMNamedNodeMap::getNamedItem ( string $name )

Retrieves a node specified by its nodeName.

Elenco dei parametri

name

The nodeName of the node to retrieve.

Valori restituiti

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

Vedere anche:



add a note add a note User Contributed Notes DOMNamedNodeMap::getNamedItem - [1 notes]
up
1
franp at free dot fr
7 years ago
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 | sitemap | contact | advertising | mirror sites