PHP google pagerank scripts very simple

Pagerank Script > Step 1 : Create Pagerank Checker Control PHP File

pagerank-checker.php

<?php
 
define('GOOGLE_MAGIC', 0xE6359A60);
 
 
 
// Start Pagerank Script
 
function _zeroFill($a, $b){
 
$z = hexdec(80000000);
 
if ($z & $a){
 
$a = ($a>>1);
 
$a &= (~$z);
 
$a |= 0x40000000;
 
$a = ($a>>($b-1));
 
}else
 
$a = ($a>>$b);
 
return $a;
 
}
 
 
 
function _mix($a,$b,$c){
 
$a -= $b; $a -= $c; $a ^= (_zeroFill($c,13));
 
$b -= $c; $b -= $a;...
Code (markup):
PHP google pagerank scripts very simple

from PHP http://ift.tt/13TFZtY
via IFTTT
Previous
Next Post »
Thanks for your comment