nexuslinkservices / favicon-finder
v1.0.0
2016-10-08 12:16 UTC
Requires
- php: >=5.6.2
Requires (Dev)
- phpunit/phpunit: 5.5.*
This package is not auto-updated.
Last update: 2024-09-14 18:53:19 UTC
README
检查网站是否存在favicon图标
安装
如果你使用composer,可以通过以下命令添加此包:
composer require galiteintechnologies/favicon-finder
用法
<?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";
}
输出
Favicon Icon exist
贡献
欢迎提交pull requests。