Toplu PagreRank Sorgulama

SeLCuK's

0
İyinet Üyesi
Katılım
27 Mart 2013
Mesajlar
118
Reaction score
0
Konum
Adana
Kod:
<?php 
    set_time_limit(600000000000);   

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 /tbr?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; 
    } 
} 

function StrToNum($Str, $Check, $Magic) { 
    $Int32Unit = 4294967296; // 2^32 
    $length = strlen($Str); 
    for ($i = 0; $i < $length; $i++) { 
        $Check *= $Magic; 
        if ($Check >= $Int32Unit) { 
            $Check = ($Check - $Int32Unit * (int) ($Check / $Int32Unit)); 
            $Check = ($Check < -2147483648)? ($Check + $Int32Unit) : $Check; 
        } 
        $Check += ord($Str{$i}); 
    } 
    return $Check; 
} 

function HashURL($String) { 
    $Check1 = StrToNum($String, 0x1505, 0x21); 
    $Check2 = 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); 
} 

function CheckHash($Hashnum) { 
    $CheckByte = 0; 
    $Flag = 0; 
    $HashStr = sprintf('%u', $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 '7'.$CheckByte.$HashStr; 
} 



?> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Toplu PagreRank Sorgulama</title> 

<script type='text/javascript'> 
window.google_analytics_uacct = "UA-23155016-2"; 
</script> 

<script type='text/javascript'> 

  var _gaq = _gaq || []; 
  _gaq.push(['_setAccount', 'UA-23155016-2']); 
  _gaq.push(['_trackPageview']); 

  (function() { 
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; 
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); 
  })(); 

</script> 

<style type="text/css"> 


body { 
    background-color:#ccc 
} 
.style2 {color: #FFFFFF}
</style></head> 
<body> 

<h2>Toplu PagreRank Sorgulama.. </h2> 
<form action="" method="post"> 
  <p> 
<textarea name = "url" cols = "100" rows = "20"></textarea> 
  </p> 
  <p><input name="findpr" type="submit" value="PageRank Sorgula" /> 
    <br /> 
    <br /> 
  </p> 
</form> 

<pre> 
<?php 
if(isset($_POST['findpr'])) 
{ 
            $siteler = $_POST['url'];  
            $siteler = explode("\r\n",$siteler); 
    foreach($siteler as $key => $url) 
    { 
        if( $siteler[$key]!="http://") 
        echo "<font size = \"4\" face = \"arial\">".$siteler[$key]."</font> => <font size = \"4\" color = \"red\"face = \"arial\"><b>".fetch_google_page_rank($siteler[$key]) ."</b></font><br />"; 
        flush(); // Tamponu temizle. 
                            ob_flush(); 
                            usleep(500000); 
    } 
} 
?> 
</pre> 

</body> 
</html>
 

Türkiye’nin ilk webmaster forum sitesi iyinet.com'da forum üyeleri tarafından yapılan tüm paylaşımlardan; Türk Ceza Kanunu’nun 20. Maddesinin, 5651 Sayılı Kanununun 4. maddesinin 2. fıkrasına göre, paylaşım yapan üyeler sorumludur.

Backlink ve Tanıtım Yazısı için iletişime geçmek için Skype Adresimiz: .cid.1580508955483fe5

Elektronik Sigara Cicisex Porno
Üst