DOMDocument::getElementsByTagName()函数是PHP中的内置函数,用于返回DOMNodeList类的新实例,该实例包含本地标记名的所有元素。
用法:
DOMNodeList DOMDocument::getElementsByTagName( string $name )
参数:该函数接受单个参数$name,该参数保存要匹配的本地标签名称。值*用于匹配所有标签。
返回值:此函数返回一个包含所有匹配元素的新DOMNodeList对象。
以下示例程序旨在说明PHP中的DOMDocument::getElementsByTagName()函数:
程序:
<?php
// Store the XML document to the variable
$xml = <<< XML
<?xml version="1.0" encoding="utf-8"?>
<organization>
<name>GeeksforGeeks</name>
<address>Noida India</address>
<contact>
<email>abc@geeksforgeeks.org</email>
<mobile>+91-987654321</mobile>
</contact>
</organization>
XML;
// Create new DOMDocument
$dom = new DOMDocument;
// Load the XML document
$dom->loadXML($xml);
// Use getElementsByTagName() function to search
// all elements with given local tag name
$org = $dom->getElementsByTagName('contact');
foreach ($org as $contact) {
echo $contact->nodeValue, PHP_EOL;
}
?>
输出:
abc@geeksforgeeks.org +91-987654321
参考: https://www.php.net/manual/en/domdocument.getelementsbytagname.php
相关用法
- PHP DOMDocument loadXML()用法及代码示例
- PHP DOMDocument normalizeDocument()用法及代码示例
- PHP DOMDocument createProcessingInstruction()用法及代码示例
- PHP DOMDocument loadHTMLFile()用法及代码示例
- PHP DOMDocument createTextNode()用法及代码示例
- PHP DOMDocument loadHTML()用法及代码示例
- PHP DOMDocument save()用法及代码示例
- PHP DOMDocument saveHTMLFile()用法及代码示例
- PHP DOMDocument load()用法及代码示例
- PHP DOMDocument createCDATASection()用法及代码示例
- PHP DOMDocument __construct()用法及代码示例
- PHP DOMDocument createElement()用法及代码示例
- PHP DOMDocument createComment()用法及代码示例
- PHP DOMDocument importNode()用法及代码示例
- PHP DOMDocument createElementNS()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | DOMDocument getElementsByTagName() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。