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"
?>
DOMNamedNodeMap::getNamedItem
(PHP 5)
DOMNamedNodeMap::getNamedItem — Retrieves a node specified by name
Beschreibung
Retrieves a node specified by its nodeName.
Parameter-Liste
-
name -
The nodeName of the node to retrieve.
Rückgabewerte
A node (of any type) with the specified nodeName, or
NULL if no node is found.
Siehe auch
- DOMNamedNodeMap::getNamedItemNS() - Retrieves a node specified by local name and namespace URI
franp at free dot fr
03-Mar-2006 08:28
