從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中文網其他相關文章!