当前位置: 首页>>代码示例>>PHP>>正文


PHP SphinxClient::SetGeoAnchor方法代码示例

本文整理汇总了PHP中SphinxClient::SetGeoAnchor方法的典型用法代码示例。如果您正苦于以下问题:PHP SphinxClient::SetGeoAnchor方法的具体用法?PHP SphinxClient::SetGeoAnchor怎么用?PHP SphinxClient::SetGeoAnchor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SphinxClient的用法示例。


在下文中一共展示了SphinxClient::SetGeoAnchor方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: fopen

fclose($file);
$client->ResetGroupBy();
// distinct
$client->SetGroupDistinct("id");
$file = fopen("spec/fixtures/data/distinct.bin", "w");
fwrite($file, $client->_reqs[$client->AddQuery("test ")]);
fclose($file);
$client->ResetGroupBy();
// weights
$client->SetWeights(array(100, 1));
$file = fopen("spec/fixtures/data/weights.bin", "w");
fwrite($file, $client->_reqs[$client->AddQuery("test ")]);
fclose($file);
$client->SetWeights(array());
// anchor
$client->SetGeoAnchor("latitude", "longitude", 10.0, 95.0);
$file = fopen("spec/fixtures/data/anchor.bin", "w");
fwrite($file, $client->_reqs[$client->AddQuery("test ")]);
fclose($file);
$client->ResetFilters();
// rank_mode
$client->SetRankingMode(SPH_RANK_WORDCOUNT);
$file = fopen("spec/fixtures/data/rank_mode.bin", "w");
fwrite($file, $client->_reqs[$client->AddQuery("test ")]);
fclose($file);
$client->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
// index_weights
$client->SetIndexWeights(array("people" => 101));
$file = fopen("spec/fixtures/data/index_weights.bin", "w");
fwrite($file, $client->_reqs[$client->AddQuery("test ")]);
fclose($file);
开发者ID:rafasashi,项目名称:gitorious,代码行数:31,代码来源:data_generator.php

示例2: setGeoAnchor

 public function setGeoAnchor($attrlat, $attrlong, $lat, $long)
 {
     $this->sphinx->SetGeoAnchor($attrlat, $attrlong, $lat, $long);
 }
开发者ID:jerson,项目名称:search-sphinxsearchbundle,代码行数:4,代码来源:Sphinxsearch.php

示例3: setGeoAnchor

 function setGeoAnchor($attrlat, $attrlong, $lat = null, $long = null)
 {
     $this->sphinx->SetGeoAnchor($attrlat, $attrlong, $lat, $long);
     return $this;
 }
开发者ID:290329416,项目名称:guahao,代码行数:5,代码来源:sphinxsearch.php

示例4: SphinxClient

<?php

require "spec/fixtures/sphinxapi.php";
$cl = new SphinxClient();
$cl->SetGeoAnchor('attrlat', 'attrlong', 20.3, 40.7);
$cl->Query('query');
开发者ID:alpbs,项目名称:sphinx,代码行数:6,代码来源:geo_anchor.php


注:本文中的SphinxClient::SetGeoAnchor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。