PHP Doku:: Retrieves a node specified by index - domnamednodemap.item.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The DOMNamedNodeMap class

<<DOMNamedNodeMap::getNamedItemNS

The DOMNode class>>

DOMNamedNodeMap::item

(PHP 5)

DOMNamedNodeMap::itemRetrieves a node specified by index

Beschreibung

DOMNode DOMNamedNodeMap::item ( int $index )

Retrieves a node specified by index within the DOMNamedNodeMap object.

Parameter-Liste

index

Index into this map.

Rückgabewerte

The node at the indexth position in the map, or NULL if that is not a valid index (greater than or equal to the number of nodes in this map).


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
reyjacobs at yahoo dot com
7.03.2008 20:24
Nevermind: I got it, and here it is:

<?php
if($element->hasAttributes())
{
   
$attributes = $element->attributes;
    if(!
is_null($attributes))
    {
        foreach (
$attributes as $index=>$attr)
        {
            echo
$attr->name."=\"".$attr->value."\"";
        }
    }
}
?>



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",...)