Wednesday, February 18, 2015

Get Google Page through PHP for Multiple URL

Here is the PHP Script for best solution for Finding PR for multiple URLs hope this very useful for your projects.


Google PageRank Script PHP

 Main Function (Download Full Script it Work like demo)

# Desc: function to check the Given URL with http:// and fetch PR
# Param: $url as String
# Depen: fetch_google_page_rank
# Return: Gogole Rank as Integer
function fetch_google_page_rank($url) {
 $url = strstr($url,"http://")? $url:"http://".$url;
    $fp = fsockopen("toolbarqueries.google.com", 80, $errno, $errstr, 30);
    if (!$fp) {
        echo "$errstr ($errno)<br />\n";
        } else {
        $out = "GET /tbl?client=navclient-auto&ch=".CheckHash(HashURL($url))."&features=Rank&q=info:".$url."&num=100&filter=0 HTTP/1.1\r\n";
        $out .= "Host: toolbarqueries.google.com\r\n";
        $out .= "User-Agent: Mozilla/4.0 (compatible; GoogleToolbar 2.0.114-big; Windows XP 5.1)\r\n";
        $out .= "Connection: Close\r\n\r\n";
        fwrite($fp, $out);

        while (!feof($fp)) {
            $data = fgets($fp, 128);
            $pos = strpos($data, "Rank_");
        if($pos === false){} else{
                $pagerank = substr($data, $pos + 9);
            }
        }
        fclose($fp);
        return (int)$pagerank;
    }
} 


Download This Script     Live Demo     Download Script

3 comments:

  1. Really nice Post about best PHP script for multiple its so helpful for all developer. Thanks

    Website development designing company in Indore

    ReplyDelete
  2. I appreciate what you have done here. I like the part where you say you are doing this to give back however I would expect by every one of the remarks this is working for you too. blog comments

    ReplyDelete
  3. Enjoyed a lot while reading this amazing article this was very informative & knowledgeable content on this blog thanx for sharing such an amazing article. WEB DEVELOPMENT Company in Indore

    ReplyDelete