我有一个搜索引擎,根据用户的输入,按照viewCount,uploadDate和rating的顺序显示数组中的元素,但相关性正在踢我的屁股;我不知道从哪里开始。
首先,从多个xml / json供稿中检索数据。
$url1 = "http://api.site1.com/?q=$userinput";
$url2 = "http://api.site2.com/?q=$userinput";
$url3 = "http://api.site3.com/?q=$userinput";
//get_and_decode is a function that gets and decodes data from the xml/json feed
get_and_decode($url1);
get_and_decode($url2);
get_and_decode($url3);
其次,所有数据都存储在一个数组中。
最后,为用户显示数组中的元素,并按视图计数,上载日期或评级进行排序。
有人能指出我正确的方向吗?我正在努力学习如何计算相关性。