发新话题
打印

另类Google

另类Google

收集可用谷歌镜像站点代理网站(每周一更新)

https://g.zmirrordemo.com/

http://tools.bugscaner.com/google/

https://iimg.pp.ua
https://xuexi.pp.ua
https://ipv4.pp.ua

https://001.wtf

https://so.mezw.com/

https://siguso.com/

http://www.iyunv.com/thread-135490-1-1.html

http://xiaoyu2er.github.io/2016/03/16/google-mirror/

http://dir.scmor.com/google/

http://www.jwss.com/

http://www.egeso.com/

http://118.174.27.210/

https://github.com/justjavac/Google-IPs

https://google.sssis.com/?gws_rd=ssl

http://114.215.203.153/google/

http://g.phpbug.cn/

http://www.gugesou.com/

https://s.bt.gg/

https://goojie.me/
https://g.keyiso.com/
http://www.886404.com/
https://www.gusouk.com/
http://www.googleout.com/
http://www.gvgle.com/
http://www.sssis.com/?gws_rd=cr
http://g.openibm.com/
https://www.ggncr.com/?gws_rd=ssl
http://vs2003.net/google/search.asp
http://verygoogle.com/
http://www.glgoo.com/
https://scholar.glgoo.com/ 学术搜索
https://xie.lu/
https://www.90r.org/
http://google.0zv.net/
http://54.64.24.234/
http://201.191.202.177/
https://g.net.co/
http://e127f.azurewebsites.net/
http://0s.o53xo.m5xw6z3mmuxgizi.erenta.ru/
http://www.1220.cc/
https://www.ggncr.com/?gws_rd=ssl
http://z7.cc/
http://www.xiexingwen.com/
http://onccc.net/
http://ycgoogle.com/
https://jiong.lu/
http://www.gugesou.com/
http://www.everthis.com/?gfe_rd=cr&ei=I7vAVKnzMumW8QecsoGgBA&gws_rd=cr,ssl
https://jinke.la/?gws_rd=ssl
https://521.pt/
http://gunduzi.duapp.com/
https://ibd.pt/
https://repigu.com/
http://web.btbook.net/
http://fqgoogle.com/
http://search.52393.com/
http://www.gugemei.com/

University
https://ytb-pc.zmirrordemo.com

[ 本帖最后由 linda 于 2020-8-6 20:18 编辑 ]

TOP

Top 100 Fastest Servers

#!/usr/local/php/bin/php
<?php
error_reporting(0);

$page_html = file_get_contents('https://github.com/justjavac/Google-IPs');

$regex = '/target="_blank">(\d*?\.\d*?\.\d*?\.\d*?)<\/a>/';
preg_match_all($regex, $page_html, $matches);

$array = array();

foreach($matches[1] as $ip){
    list($msec, $sec) = explode(' ', microtime());
    $start = (float)$sec + (float)$msec;

    $opts = array(
        'http' => array(
        'method'  => "GET",
        'timeout' => 2,
        'header'  => "Accept-language: zh-CN,zh;q=0.8,en;q=0.6,ja;q=0.4,zh-TW;q=0.2\r\n" .
                     "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\r\n" .
                     "Cache-Control: max-age=0\r\n" .
                     "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.149 Safari/537.36\r\n" .
                     "Accept-Encoding: deflate,sdch\r\n" .
                     "Host: {$ip}\n\n" .
                     "Connection: keep-alive\r\n"
        )
    );
    $context = stream_context_create($opts);
    $html = file_get_contents("http://{$ip}/search?q=php", false, $context);
    if ($html === false) {
        echo "IP: {$ip} timeout.\n";
        continue;
    }
   
    if (preg_match('/<div id="sfcnt">/', $html) === 0) {
        echo "IP: {$ip} content error.\n";
        continue;
    }

    list($msec, $sec) = explode(' ', microtime());
    $end = (float)$sec + (float)$msec;
    $duration = $end - $start;
   
    echo "IP: {$ip} {$duration}s.\n";
    $array[$ip] = $duration;
}

asort($array);
$new_array = array_slice($array, 0, 100);

echo "\n------------------------------------------------------\n";
echo "               Top 100 Fastest Servers";
echo "------------------------------------------------------\n\n";

foreach($new_array as $key=>$value){
    echo $key . "\r\n";
}
?>

TOP

发新话题