Home > php教程 > php手册 > body text

PR值查询 | PageRank 查询

WBOY
Release: 2016-06-13 12:34:38
Original
1457 people have browsed it

复制代码 代码如下:


/*
    filename    :    http://www.computer98.com/pr.php
    version        :    0.02
    author        :    computer98.com
    from        :    www.computer98.com
    last modified:    2006-12-17 1:45
    remark        :    转载请保留此信息,及出处。
*/

if(!empty($_REQUEST['show_source'])){
    show_source("pr.php");
    die(0);
}
?>



电脑酒吧 :: PR值查询 | PageRank 查询



输入要查询的网址:



if(!empty($_REQUEST['url'])){
    $url=$_REQUEST['url'];
    $f2= file_get_contents("http://www.getyourpagerank.com/rank.php?url=".$url);
    preg_match("/PageRank:\s*(\d*)/i",$f2,$pagerank);
    $hrefurl="http://".str_replace("http://","",$url);
    echo "".$url." 的PR值是 ".$pagerank[1]." , ";
    $whoisurl=str_replace("http://","",$hrefurl);
    $whoisurl=str_replace("www.","",$whoisurl);
    $whoisurl=str_replace("/","",$whoisurl);
    echo "WHOIS , ";
    //echo "WHOIS , ";
    echo "ALEXA
";

    $google_link="
Related labels:
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template