当前位置: 首页 > 图文教程 > 网络编程 > PHP > PR值查询 | PageRank 查询

PHP
初学者入门:细述PHP4的核心Zend
网友分享:php与XML、XSLT、Mysql结合运用
DISCUZ架构:积分系统代码分析一
DISCUZ架构:积分系统代码分析二
DISCUZ架构:积分系统代码分析三
设置COOKIE保留时间为浏览器进程
通过ADO调用Access数据库和COM程序
判断一数是否在一已知数组中的函数
如何使用PHP中的日期和时间函数
一个PHP中常用email校验语句的解释
如何利Mcrypt扩展库进行加密和解密
PHP脚本的8个技巧(4)动态创建图象
实用技巧:PHP截取中文字符串的问题
PHP与已存在的Java应用程序集成
PHP3中使用ORACLE函数的使用说明
PHP技巧:得到一个字符串的最后一个字符
Linux系统下让PHP提高性能的工具APC
为您详解PHP开发工具的使用与分析
如何使用PHP开发高效的WEB系统
用 PHP V4 开发的代码迁移到 PHP V5

PHP 中的 PR值查询 | PageRank 查询


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 130 ::
收藏到网摘: n/a

复制代码 代码如下:

<?php
/*
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);
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>电脑酒吧 :: PR值查询 | PageRank 查询</title>
</head>
<body onload="javascript:document.frmPr.url.focus();">
<form name="frmPr" method="post" action="pr.php">
输入要查询的网址:
<input type="text" name="url" size="30">
<input type="submit">
</form>
<?php
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 "<a href=\"".$hrefurl."\" target=\"_blank\">".$url."</a> 的PR值是 <b>".$pagerank[1]."</b> , ";
$whoisurl=str_replace("http://","",$hrefurl);
$whoisurl=str_replace("www.","",$whoisurl);
$whoisurl=str_replace("/","",$whoisurl);
echo "<a href=\"http://whois.domaintools.com/".$whoisurl."\" target=\"_blank\">WHOIS</a> , ";
//echo "<a href=\"http://www.computer98.com/whois/?whois=".$whoisurl."\" target=\"_blank\">WHOIS</a> , ";
echo "<a href=\"http://alexa.chinaz.com/?domain=".$url."\" target=\"_blank\">ALEXA</a><br>";
$google_link="<iframe src=\"http://www.google.com/search?q=link:".$url."\" width=\"50%\" height=\"500\">";
$google_site="<iframe src=\"http://www.google.com/search?q=site:".$url."\" width=\"50%\" height=\"500\">";
//$baidu_link="<iframe src=\"http://www.baidu.com/s?wd=link:".$url."\">";
//$baidu_site="<iframe src=\"http://www.baidu.com/s?wd=site:".$url."\">";
$baidu_link="<a href=\"http://www.baidu.com/s?wd=link:".$url."\" target=\"_blank\">baidu link</a>";
$baidu_site="<a href=\"http://www.baidu.com/s?wd=site:".$url."\" target=\"_blank\">baidu site</a>";
}
?>
<FORM METHOD=POST ACTION="http://www.ip138.com/ips8.asp" name="ipform" target="_blank">
<tr><td align="center">IP地址:<input type="text" name="ip" size="16" value="<?php echo gethostbyname($whoisurl); ?>">
<input type="submit" value="查询"><INPUT TYPE="hidden" name="action" value="2">
</td></tr></FORM>
<?php
echo $baidu_link." ";
echo $baidu_site."<br>";
echo $google_link;
echo $google_site;
?>
<a href="http://www.computer98.com/pr.php?show_source=true">show source</a><br>
</body>
</html>