DOMNamedNodeMap::getNamedItem

(PHP 5, PHP 7)

DOMNamedNodeMap::getNamedItem Retrieves a node specified by name

Descrierea

DOMNamedNodeMap::getNamedItem ( string $name ) : DOMNode

Retrieves a node specified by its nodeName.

Parametri

name

The nodeName of the node to retrieve.

Valorile întoarse

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

A se vedea și

add a note add a note

User Contributed Notes 1 note

up
9
franp at free dot fr
18 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"
?>
To Top