Reputation: 6802
I load the DOM by an external url as such:
$dom = new DOMDocument;
$dom->loadHTMLFile( "external_url.html" );
$arrayOfSources = array();
foreach( $dom->getElementsByTagName( "img" ) as $image )
$arrayOfSources[] = $image->item(0)->getAttribute("src");
This way I want to store all the src attributes of the img tags in an array, but I keep getting the error Fatal error: Call to undefined method DOMDocument::item()
What am I missing here? How do I extract all the src attributes from the img tags in an html?
Upvotes: 4
Views: 3019
Reputation: 490203
Inside that loop, you don't need to access the element with item(0)
.
The iterator for that collection allows you to just do a foreach()
on it and have it implicitly access each element in the DOMNodeList
.
Upvotes: 2