PHP 通过Google获取域名favicon

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 通过Google获取域名favicon相关的知识,希望对你有一定的参考价值。

<?php
// Grab the favicon of a domain using Google s2 Converter
// Put this in your php file and then call it like:
// http://yourdomain.com/file.php?url=somedomain.com

function getFavicon(){
	$linkurl = $_GET['url'];
	$linkurl = str_replace("http://",'',$linkurl); // remove protocol from the domain
	$imgurl = "http://www.google.com/s2/favicons?domain=" . $linkurl;
	echo '<img src="' . $imgurl . '" width="16" height="16" />';
}

getFavicon();
?>

以上是关于PHP 通过Google获取域名favicon的主要内容,如果未能解决你的问题,请参考以下文章

PHP获取来路域名 关键字

PHP获取来路域名

php 怎么允许某些域名访问和获取访问的域名

PHP怎么获取来源域名

PHP如何获取目标域名的全部二级域名

PHP 通过Google获取favicon