Dutch PHP Conference 2025 - Call For Papers

DOMNamedNodeMap::getNamedItem

(PHP 5, PHP 7, PHP 8)

DOMNamedNodeMap::getNamedItem Retrieves a node specified by name

Опис

public DOMNamedNodeMap::getNamedItem(string $qualifiedName): ?DOMNode

Retrieves a node specified by its nodeName.

Параметри

qualifiedName

The nodeName of the node to retrieve.

Значення, що повертаються

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

Приклади

Приклад #1 Getting an attribute on a node

<?php

$doc
= new DOMDocument;
$doc->load('book.xml');

$id = $doc->firstChild->attributes->getNamedItem('id');

?>

Items can be also accessed with array syntax:

<?php

$id
= $doc->firstChild->attributes['id'];

?>

Прогляньте також

add a note

User Contributed Notes 1 note

up
10
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