Skip to content

Instantly share code, notes, and snippets.

@nch7
Last active August 29, 2015 14:15
Show Gist options
  • Save nch7/aa0f1bcd94df6ddb4b87 to your computer and use it in GitHub Desktop.
Save nch7/aa0f1bcd94df6ddb4b87 to your computer and use it in GitHub Desktop.
function fetch_links($content){
if(preg_match_all('/<a\s+href=["\']([^"\']+)["\']/i', $content, $links, PREG_PATTERN_ORDER))
return array_unique($links[1]);
return [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment