Search favicons from any website using PHP
Search favicons from any website using PHP and download favicons file to your server. If you request a website URL to download favicons file like https://sadedar.com/favicon.php?url=google.com Write favicon.php file below code. <?php $userPath=$_GET[‘url’]; // you can use GET or POST method. require ‘FaviconDownloader.class.php’; $favicon = new FaviconDownloader($userPath); if($favicon->icoExists){ echo “Favicon found : “.$favicon->icoUrl.”\n”; // Saving … Read more