nexuslinkservices/favicon-finder

v1.0.0 2016-10-08 12:16 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:18:10 UTC


README

Check if website have favicon icon exist or not

Latest Version Software License Scrutinizer Code Quality Build Status

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.