Jump to content

scraping all <a href ... > tags and store them into array.


ok

Recommended Posts

I want to scrape all <a href .. > tags and store them into array.

 

For example,

 

Let say i want to srape a page that has multiple <a href .. > tags, like this one below,

 

<a href="/sudden/businesses/display.cfm?recordid=1936">

 

and store them into array.

 

I want to know what function in php that determine the <a href .. > tag?

 

or could you show me example for this.

 

Thank you in advance.

 

 

 

use strip_tags

eg

 

$data = strip_tags($htmlpage,"<a>");

 

 

then you are left with all <a> tags.

 

then you can split on "</a>"

 

eg

 

$splitted = split('</a>',$data); #not tested

print_r($splitted);

 

then you carry on your manipulation

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.