本文整理汇总了PHP中query::complexQueryGoogle方法的典型用法代码示例。如果您正苦于以下问题:PHP query::complexQueryGoogle方法的具体用法?PHP query::complexQueryGoogle怎么用?PHP query::complexQueryGoogle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类query
的用法示例。
在下文中一共展示了query::complexQueryGoogle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: thesaurus
// Query Preprocess
$thesaurus1 = new thesaurus();
$thesaurus1->loadThesaurusFile($_SESSION['thesaurus']);
$qX = new query();
if ($_SESSION['stemmer'] == 'off') {
$qX->tokeniseQuery($q);
} else {
if ($_SESSION['stemmer'] == 'on') {
$qX->tokeniseQuery(implode(" ", $qX->stem_list($q)));
}
}
$q = $qX->expandQuery($q, $thesaurus1->returnThesaurus());
}
// Process the Query
$q1 = new query();
$query1 = $q1->complexQueryGoogle($q);
$query2 = $q1->complexQueryBing($q);
$query3 = $q1->complexQueryBlekko($q);
// AGG
if ($_SESSION['result_op'] == 'agg') {
// Instantiate a new API
$api1 = new api();
// Instantiate a new formatter with the 3 result sets as properties
$formatter1 = new formatter(new resultSet(), new resultSet(), new resultSet());
// Google Results
for ($i = 0; $i < $_SESSION['results'] / 10; $i++) {
// Get offset
$offset = 1 + $i * 10;
// Call Google API
$api1->googleApi($query1, $offset);
// Set Google JSON Data