首頁 >後端開發 >php教程 >如何從 HTML 提取圖像的來源屬性?

如何從 HTML 提取圖像的來源屬性?

Barbara Streisand
Barbara Streisand原創
2024-12-10 00:42:13772瀏覽

How Can I Extract the Source Attribute of an Image from HTML?

從HTML 擷取影像來源

要擷取HTML 文件中第一個出現的影像標籤的來源屬性,可以使用多種方法。讓我們來探索這些方法:

使用DOM(文檔物件模型):

// Load the HTML content into a DOMDocument
$html = '<img border="0" src="/images/image.jpg" alt="Image" width="100" height="100" />';
$doc = new DOMDocument();
$doc->loadHTML($html);

// Create a DOMXPath object
$xpath = new DOMXPath($doc);

// Evaluate the XPath expression to extract the src attribute
$src = $xpath->evaluate("string(//img/@src)");

結果分配給變數$src,該變數儲存來源屬性值,例如“/images” /image .jpg"。

使用SimpleXMLElement:

$html = '<img border="0" src="/images/image.jpg" alt="Image" width="100" height="100" />';
$src = (string) reset(simplexml_import_dom(DOMDocument::loadHTML($html))->xpath("//img/@src"));

此方法將DOMDocument 與SimpleXMLElement 結合起來提取src 屬性。 。

以上是如何從 HTML 提取圖像的來源屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn