I am trying to figure a way to find all links on page with certain keywords in url.
I found this which finds all links but I only want links if certain keywords in within url i.e. find all links with sales or discount in url
So I want to do is $html->find('a' if url has sales or discount in it)
Thanks for your help
I found this which finds all links but I only want links if certain keywords in within url i.e. find all links with sales or discount in url
Code:
// Find all "A" tags and print their HREFs
foreach($html->find('a') as $e)
echo $e->href
So I want to do is $html->find('a' if url has sales or discount in it)
Thanks for your help