Weblurk
Weblurk

Reputation: 6802

How do I get the src attribute of img tags?

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

Answers (3)

Michael Wright
Michael Wright

Reputation: 591

Try:

$arrayOfSources[] = $image->getAttribute("src");

Upvotes: 1

alex
alex

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

Álvaro González
Álvaro González

Reputation: 146430

Drop the ->item(0) part.


Upvotes: 4

Related Questions