获取库谷歌页面排名检查器的输出
我使用 codeigniter 并希望使用 Google PageRank Checker (我从以下网站获取它:使用 PHP 检索任何域的 Google PageRank)作为 codeigniter 中的库。
我在库中完成了这样的操作(我的库的完整代码): http://pastebin.com/8TsiT9H4
加载此内容contorola 中的库为:
$this->load->library('googlepr');
并在视图中运行它,如下代码:
$gpr = new GooglePR();
$pagerank = $gpr->getPagerank('http://www.domain.com');
echo $pagerank;
但它没有给我输出,如何修复它并获取输出?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您错过了 PHP-Curl 绑定
安装 PHP-Curl 一切都应该很好。提示此处
I think you miss the PHP-Curl bindings
Install PHP-Curl and all should be good. Tips here
这里没有什么需要修复的,除非您发现该函数有什么问题:
它在我的网络服务器中提供了该输出
所以,我认为函数已经过时了。
There is nothing to fix here unless you find what's wrong with that function:
It gives that output in my web server
So, i think function is outdated.