如何使用 PHP 创建 Google PageRank 检查器

发布于 2024-12-26 15:06:02 字数 117 浏览 1 评论 0原文

我想要一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

百善笑为先 2025-01-02 15:06:02

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.

倒带 2025-01-02 15:06:02

上面的大卫·沃尔什脚本不起作用。我正在使用 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

我做我的改变 2025-01-02 15:06:02

作为对 Vivek 的回答的回应/补充

上面的 david walsh 脚本不起作用。我正在使用 SEOStats 库
存在于 GITHub 中。
来源:https://github.com/eyecatchup/SEOstats/#brief-使用示例

实际上你不需要使用完整的库。 SEOstats 内部使用一个独立的 Google PageRank 类,可以按如下方式使用:

<?php
  $url = 'http://somedomain.com/';  
  $pr  = new GTB_PageRank($url);

  $rank = $pr->getPageRank();

  printf("The Google Pagerank of %s is %s.", $url, $rank);

我认为这个类的好处是它支持所有现有的 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

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

Actually you don't need to use the full library. SEOstats internally uses a standalone Google PageRank class that can be used as follows:

<?php
  $url = 'http://somedomain.com/';  
  $pr  = new GTB_PageRank($url);

  $rank = $pr->getPageRank();

  printf("The Google Pagerank of %s is %s.", $url, $rank);

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文