nexuslinkservices / favicon-finder
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/nexuslinkservices/favicon-finder
Requires
- php: >=5.6.2
Requires (Dev)
- phpunit/phpunit: 5.5.*
This package is not auto-updated.
Last update: 2025-10-12 00:10:00 UTC
README
Check if website have favicon icon exist or not
Installation
If you use composer, you can add this package by running
composer require galiteintechnologies/favicon-finder
Usage
<?php
use FaviconFinder\IconFinder;
$iconFinder = new IconFinder();
$isFaviconAvailable = $iconFinder->isFaviconAvailable("http://packagist.com/");
if($isFaviconAvailable)
{
echo "Favicon Icon exist";
} else {
echo "Favicon Icon Does not exist";
}
Output
Favicon Icon exist
CONTRIBUTING:
Pull requests are always welcome.