首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

PHP中应用sphinx搜索

2012-07-24 
PHP中使用sphinx搜索??php//引入sphinxAPI 官方提供include sphinxapi.php$sc new SphinxClient()/

PHP中使用sphinx搜索

?

<?php//引入sphinxAPI 官方提供include 'sphinxapi.php';$sc = new SphinxClient();//监听sphinx服务器地址与端口$sc->setServer('localhost','9312');//从test2索引中搜索含有rest的数据$array = $sc->query('rest', 'test2');print_r($array);

热点排行