gpt4 book ai didi

php - 如何获取 img 标签的 src 属性?

转载 作者:可可西里 更新时间:2023-11-01 00:51:23 24 4
gpt4 key购买 nike

我通过外部 url 加载 DOM:

$dom = new DOMDocument;
$dom->loadHTMLFile( "external_url.html" );

$arrayOfSources = array();

foreach( $dom->getElementsByTagName( "img" ) as $image )
$arrayOfSources[] = $image->item(0)->getAttribute("src");

这样我想将 img 标签的所有 src 属性存储在一个数组中,但我不断收到错误 Fatal error: Call to undefined method DOMDocument::item()

我在这里错过了什么?如何从 html 中的 img 标签中提取所有 src 属性?

最佳答案

删除 ->item(0) 部分。


关于php - 如何获取 img 标签的 src 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6441448/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com