Jump to content

[SOLVED] Getting <a> Tag Using DOM


jjacquay712

Recommended Posts

I am making a php spider and need to get the link from an <a> tag. I was going to use preg_match_all to get the content from the tag, but someone suggested using DOM to do that. Does anyone know how this is done? Any help is greatly appreciated.

 

                                        Thanks John

Link to comment
https://forums.phpfreaks.com/topic/141670-solved-getting-tag-using-dom/
Share on other sites

This might help, it is not using dom

http://djw-webdesign.awardspace.com/code.php?snippet=13

 

or

 

http://djw-webdesign.awardspace.com/code.php?snippet=1

 

or this might work

 


$code = "<a href=\"test\">test</a>";

$code = preg_replace("/\<a href=([^\[]+)\>(.*?)\<\/a\>/","//1",$code);

echo $code;//should print test

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.