I have html content with multiple links(a href) , I need to extract the text between the <a>
tag.
I have to do it with php.
I tried this code :
preg_match_all('/<a\s+href=["\']([^"\']+)["\']/i',$response['content']['html'], $result);
This seems to be not the appropriate solution.
Any help will be appreciated.