此代码适用于大多数网站,如 google、youtube、facebook 等,但不适用于一些网站,如 technorati:
<?php
$favicon="http://technorati.com/favicon.ico";
$content = file_get_contents($favicon);
file_put_contents('favicon/icon.ico', $content);
echo "<img src=\"http://localhost/test/favicon/icon.ico\" />";
?>
//输出:
警告:file_get_contents(http://technorati.com/favicon.ico)[function.file-get-contents]:打开流失败:HTTP 请求失败!HTTP/1.1 403 Forbidden in /opt/lampp/htdocs/test/simple.php 第 3 行
如何下载 technorati 的网站图标?