如何使用 PHP 创建 Google PageRank 检查器
我想要一个 Google PageRank 检查器来检查 pageRank 的 url,如果大于 5,则返回(结果)为 TRUE,否则(小于 5)返回(结果)为 FALSE。 PHP 或 codeigniter 怎么样?
I want a Google PageRank Checker for check pageRank a url that if was larger of 5, return (result) it is TRUE, else (less of 5) return (result) is FALSE. how is it by PHP or codeigniter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Mark Woodman 创建了一个漂亮的类,可让您使用 PHP 及更高版本查询 Google pagerank 信息。完整的课程可在此处获取。
以下是详细教程:
PHP 中的 Google PageRank< /a>
编辑:
这是 php 类:
PHP 类:Google Page Rank Checker Class
,这是另一个做同样事情的博客:
http://davidwalsh.name/google-pagerank
希望这会有所帮助。
Mark Woodman has created a nifty class which lets you query Google pagerank info in PHP and above. The complete classes are available here.
Here is a detailed tutorial:
Google Pagerank in PHP
EDIT:
Here is a class of google page rank checker on php classes:
PHP Classes: Google Page Rank Checker Class
and here is another blog doing the same thing:
http://davidwalsh.name/google-pagerank
Hope this helps.
上面的大卫·沃尔什脚本不起作用。我正在使用 GITHub 中的 SEOStats 库。
来源:https://github.com/eyecatchup/SEOstats/#brief-example使用
Above david walsh script is not working. I am using SEOStats library present in GITHub.
Source: https://github.com/eyecatchup/SEOstats/#brief-example-of-use
作为对 Vivek 的回答的回应/补充
实际上你不需要使用完整的库。 SEOstats 内部使用一个独立的 Google PageRank 类,可以按如下方式使用:
我认为这个类的好处是它支持所有现有的 PageRank 哈希算法(awesome、jenkins、jenkins2 和 IE),并且内置了一些高级功能中,如建议的 Toolbar-TLD 等。
您可以在此处获取代码: https://github .com/eyecatchup/SEOstats/blob/master/SEOstats/Services/3rdparty/GTB_PageRank.php
In response/addition to Vivek's answer
Actually you don't need to use the full library. SEOstats internally uses a standalone Google PageRank class that can be used as follows:
The nice thing about this class, as I think, is that it supports all existing PageRank hashing algorithms (awesome, jenkins, jenkins2 and IE) and has some advanced features built in, such as suggested Toolbar-TLD and more.
You can get the code here: https://github.com/eyecatchup/SEOstats/blob/master/SEOstats/Services/3rdparty/GTB_PageRank.php