Home php教程 PHP源码 如何用PHP获取网站收录的内容

如何用PHP获取网站收录的内容

May 25, 2016 pm 05:12 PM
php

这篇文章主要讲了如何用PHP获取网站收录的内容,有一定的参考价值,感兴趣的朋友可以看看。

<?php
class SEO_RankChecker
{
private $url;
public function __construct($url)
{
$this->url = preg_replace(&#39;/http\:\/\//si&#39;, &#39;&#39;, $url);
}
private function getContent($url)
{
$snoopy=new Snoopy();
$snoopy->agent=&#39;Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.517.41 Safari/534.7&#39;;
$snoopy->fetch($url);
if($snoopy->status==200)
{
$charset=&#39;utf-8&#39;;
$snoopy->results=strtolower($snoopy->results);
//首先从html获取编码
preg_match("/<meta.+?charset=[^\w]?([-\w]+)/i",$snoopy->results,$temp) ? strtolower($temp[1]):"";
if(isset($temp[1])!="")
{
$charset=$temp[1]; 
}
else if(!empty($snoopy->headers))
{
//从header中获取编码
$hstr=strtolower(implode("|||",$snoopy->headers));
preg_match("/charset=[^\w]?([-\w]+)/is",$hstr,$lang) ? strtolower($lang[1]):"";
if($lang[1]!="")
{
$charset=$lang[1];
}
else
{
$encode_arr=array("UTF-8","GB2312","GBK","BIG5","ASCII","EUC-JP","Shift_JIS","CP936","ISO-8859-1","JIS","eucjp-win","sjis-win");
$encoded=mb_detect_encoding($snoopy->results,$encode_arr);
if($encoded)
{
$charset=strtolower($encoded);
}
}
}
else 
{
$encode_arr=array("UTF-8","GB2312","GBK","BIG5","ASCII","EUC-JP","Shift_JIS","CP936","ISO-8859-1","JIS","eucjp-win","sjis-win");
$encoded=mb_detect_encoding($snoopy->results,$encode_arr);
if($encoded)
{
$charset=strtolower($encoded);
}
}
if($charset!="utf-8" && $charset!==false)
{
$snoopy->results=mb_convert_encoding($snoopy->results,"UTF-8",$charset);
}
return $snoopy->results;
}
else 
{
return &#39;&#39;;
}
}
//获取alexa排名
public function getAlexaRank()
{
$url = $this->url;
$xml = @simplexml_load_string(file_get_contents(&#39;http://data.alexa.com/data?cli=10&url=&#39; . $url));
return $xml ? $xml->SD->POPULARITY[&#39;TEXT&#39;] : &#39;&#39;;
}
//如果被dmoz收录就返回dmoz的目录名称
public function getDmoz()
{
$url = preg_replace(&#39;/^www\./&#39;, &#39;&#39;, $this->url);
$url = "http://search.dmoz.org/cgi-bin/search?search=$url";
$data = $this->getContent($url);
if(preg_match(&#39;<center>No <b><a href="http://dmoz\.org/">Open Directory Project</a></b> results found</center>&#39;, $data))
{
$value = false;
}
else
{
$value = true;
}
return $value;
}
//如果被yahoo收录就返回yahoo的目录名称
public function getYahooDirectory()
{
$url = preg_replace(&#39;/^www\./&#39;, &#39;&#39;, $this->url);
$url = "http://search.yahoo.com/search/dir?p=$url";
$data = $this->getContent($url);
if(preg_match(&#39;No Directory Search results were found\.&#39;, $data)) {
$value = false;
} else {
$value = true;
}
return $value;
}
//获取Baidu收录
public function getIndexedBaidu()
{
$url = $this->url;
$url = &#39;http://www.baidu.com/s?wd=site%3A&#39;.urlencode($url);
$data = $this->getContent($url);
preg_match(&#39;/找到相关结果数([0-9\,]+)个/si&#39;, $data, $p);
$value = isset($p[1]) ? $this->toInt($p[1]) : 0;
return $value;
}
//获取google收录
public function getIndexedGoogle()
{
$url = $this->url;
$url = &#39;http://www.google.com/search?hl=en&safe=off&btnG=Search&q=site%3A&#39;.urlencode($url);
$data = $this->getContent($url);
preg_match(&#39;/([0-9\,]+) result/si&#39;, $data, $p);
$value = isset($p[1]) ? $this->toInt($p[1]) : 0;
return $value;
}
/**
*功能:获取Google反链 
*时间: 2011-10-13 下午11:28:45
*/
public function getBacklinksGoogle()
{
$url = $this->url;
$url = &#39;http://www.google.com/search?q=link%3A&#39;.urlencode($url);
$data = $this->getContent($url);
preg_match(&#39;/of about \<b\>([0-9\,]+)\<\/b\>/si&#39;, $data, $p);
$value = isset($p[1]) ? $this->toInt($p[1]) : 0;
return $value;
}
/**
*功能:获取Yahoo反链 
*时间: 2011-10-13 下午11:28:45
*/
public function getBacklinksYahoo()
{
$url = $this->url;
$url = &#39;http://siteexplorer.search.yahoo.com/search?p=&#39;.urlencode($url);
$data = $this->getContent($url);
preg_match(&#39;/Inlinks \(([0-9\,]+)\)/si&#39;, $data, $p);
$value = isset($p[1]) ? $this->toInt($p[1]) : 0;
return $value;
}
//获取域名年龄
public function getAge()
{
$url = preg_replace(&#39;/^www\./&#39;, &#39;&#39;, $this->url);
$url = &#39;http://www.who.is/whois/&#39;.urlencode($url);
$data = $this->getContent($url);
preg_match(&#39;#(?:Creation Date|Created On):\s*([a-z0-9/-]+)#si&#39;, $data, $p);
if(!isset($p[1]))
{
return null;
}
$value = time() - strtotime($p[1]);
return $value;
}
//获取yahoo的收录数量
public function getIndexedYahoo()
{
$url = $this->url;
$url = &#39;http://siteexplorer.search.yahoo.com/search?p=&#39;.urlencode($url);
$data = $this->getContent($url);
preg_match(&#39;/Pages \(([0-9,]{1,})\)/im&#39;, $data, $p);
$value = isset($p[1]) ? $this->toInt($p[1]) : 0;
return $value;
}
/**
*功能:获取PR 
*时间: 2011-10-13 下午11:27:19
*/
public function getPagerank()
{
$chwrite = $this->CheckHash($this->HashURL($this->url));
$url="http://toolbarqueries.google.com/tbr?client=navclient-auto&ch=".$chwrite."&features=Rank&q=info:".$this->url."&num=100&filter=0";
$data = $this->getContent($url);
preg_match(&#39;#Rank_[0-9]:[0-9]:([0-9]+){1,}#si&#39;, $data, $p);
$value = isset($p[1]) ? $p[1] : 0;
return $value;
}
private function toInt($string)
{
return preg_replace(&#39;#[^0-9]#si&#39;, &#39;&#39;, $string);
}
//--> for google Piwik_SEO_Ranks
private function StrToNum($Str, $Check, $Magic)
{
$Int32Unit = 4294967296; // 2^32
$length = strlen($Str);
for($i = 0; $i < $length; $i++)
{
$Check *= $Magic;
// If the float is beyond the boundaries of integer (usually +/- 2.15e+9 = 2^31),
// the result of converting to integer is undefined
// refer to http://www.php.net/manual/en/language.types.integer.php
if($Check >= $Int32Unit)
{
$Check = ($Check - $Int32Unit * (int) ($Check / $Int32Unit));
//if the check less than -2^31
$Check = ($Check < -2147483648) ? ($Check + $Int32Unit) : $Check;
}
$Check += ord($Str{$i});
}
return $Check;
}
/*
* Genearate a hash for a url
*/
private function HashURL($String)
{
$Check1 = $this->StrToNum($String, 0x1505, 0x21);
$Check2 = $this->StrToNum($String, 0, 0x1003F);
$Check1 >>= 2;
$Check1 = (($Check1 >> 4) & 0x3FFFFC0 ) | ($Check1 & 0x3F);
$Check1 = (($Check1 >> 4) & 0x3FFC00 ) | ($Check1 & 0x3FF);
$Check1 = (($Check1 >> 4) & 0x3C000 ) | ($Check1 & 0x3FFF);
$T1 = (((($Check1 & 0x3C0) << 4) | ($Check1 & 0x3C)) <<2 ) | ($Check2 & 0xF0F );
$T2 = (((($Check1 & 0xFFFFC000) << 4) | ($Check1 & 0x3C00)) << 0xA) | ($Check2 & 0xF0F0000 );
return ($T1 | $T2);
}
//--> for google Piwik_SEO_Ranks
/*
* genearate a checksum for the hash string
*/
private function CheckHash($Hashnum)
{
$CheckByte = 0;
$Flag = 0;
$HashStr = sprintf(&#39;%u&#39;, $Hashnum) ;
$length = strlen($HashStr);
for($i = $length - 1; $i >= 0; $i --)
{
$Re = $HashStr{$i};
if(1 === ($Flag % 2)) {
$Re += $Re;
$Re = (int)($Re / 10) + ($Re % 10);
}
$CheckByte += $Re;
$Flag ++;
}
$CheckByte %= 10;
if(0 !== $CheckByte)
{
$CheckByte = 10 - $CheckByte;
if(1 === ($Flag % 2) )
{
if(1 === ($CheckByte % 2))
{
$CheckByte += 9;
}
$CheckByte >>= 1;
}
}
return &#39;7&#39;.$CheckByte.$HashStr;
}
}
?>
Copy after login

【相关教程推荐】

1. php编程从入门到精通全套视频教程
2.  php从入门到精通
3. bootstrap教程

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1269
29
C# Tutorial
1249
24
Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

See all articles