略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: DOMNamedNodeMap::getNamedItem

2024-04-30

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.

参见

add a noteadd a note

User Contributed Notes 1 note

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

官方地址:https://www.php.net/manual/en/domnamednodemap.getnameditem.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3