我有一个Mac的AMPPS堆栈,我正在尝试制作一个PageRank网络工具,它将允许显示任何网站的PageRank。
我有以下类:https://raw.github.com/phurix/pagerank/master/pagerank.class.php
当我使用这个代码时:
<>之前包括(pagerank.class.php);$rank = new PageRank('http://www.mysite.com');print_r($排名);之前返回print_r()中如下所示的对象:PageRank对象([host] => toolbarqueries.google.com)
根据代码,它应该给出返回的输出,对吗?
不能从对象构造函数返回信息。在构造函数中有一个return
语句(它返回file_get_contents(something)
),它将被忽略。
用函数代替