PHP Doku:: Retrieves a node specified by name - domnamednodemap.getnameditem.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationDocument Object ModelThe DOMNamedNodeMap classDOMNamedNodeMap::getNamedItem

Ein Service von Reinhard Neidl - Webprogrammierung.

The DOMNamedNodeMap class

<<The DOMNamedNodeMap class

DOMNamedNodeMap::getNamedItemNS>>

DOMNamedNodeMap::getNamedItem

(PHP 5)

DOMNamedNodeMap::getNamedItem Retrieves a node specified by name

Beschreibung

DOMNode DOMNamedNodeMap::getNamedItem ( string $name )

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


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
franp at free dot fr
3.03.2006 16: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"
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)