我有一个AMPPS Stack用于Mac,我正在尝试制作一个PageRank webtool,它可以显示任何网站的PageRank。
我有以下课程: https://raw.github.com/phurix/pagerank/master/pagerank.class.php
当我使用此代码时:
include(pagerank.class.php); $rank = new PageRank('http://www.mysite.com'); print_r($rank);
它在print_r()中返回一个如下所示的Object: PageRank对象([host] => toolbarqueries.google.com)
根据代码,它应该给出返回的输出吗?
答案 0 :(得分:0)
您无法从对象构造函数返回信息。构造函数中有一个return
语句(它返回file_get_contents(something)
),这将被忽略。
改为使用功能。