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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。