how to get favicon with Goutte php code example
Example: how to get favicon with Goutte php
function getFavicon($url){
$elems = parse_url($url);
$url = $elems['scheme'].'://'.$elems['host'];
$output = file_get_contents($url);
$regex_pattern = "/rel=\"shortcut icon\" (?:href=[\'\"]([^\'\"]+)[\'\"])?/";
preg_match_all($regex_pattern, $output, $matches);
if(isset($matches[1][0])){
$favicon = $matches[1][0];
$favicon_elems = parse_url($favicon);
if(!isset($favicon_elems['host'])){
$favicon = $url . '/' . $favicon;
}
return $favicon;
}
return false;
}