SPHINX搜索php查询,如何显示数组的结果?

时间:2010-09-30 08:01:23

标签: php search-engine sphinx

我开始学习sphinx搜索php api

运行此查询后

   <?php
  include('sphinxapi.php');
  $cl = new SphinxClient();
  $cl->SetServer( "192.168.0.100", 9312 );
  $cl->SetMatchMode( SPH_MATCH_ANY  );
  $result = $cl->Query( "mimmi",  "searchtest" );

  if ( $result === false ) {
      echo "Query failed: " . $cl->GetLastError() . ".\n";
  }
  else {
      if ( $cl->GetLastWarning() ) {
          echo "WARNING: " . $cl->GetLastWarning() . "
";
      }

      if ( ! empty($result["matches"]) ) {
          foreach ( $result["matches"] as $doc => $docinfo ) {
                echo "$doc\n";
          }

          print_r( $result );
      }
  }

  exit;
?>   

如何正确显示结果,它会显示如下输出

2183 3262 5256 7812 838 1475 1701 6184 1816 Array ( [error] => [warning] => [status] => 0 [fields] => Array ( [0] => namn [1] => title [2] => identification_text [3] => id [4] => namn [5] => title [6] => identification_text [7] => description ) [attrs] => Array ( ) [matches] => Array ( [2183] => Array ( [weight] => 6 [attrs] => Array ( ) ) [3262] => Array ( [weight] => 6 [attrs] => Array ( ) ) [5256] => Array ( [weight] => 6 [attrs] => Array ( ) ) [7812] => Array ( [weight] => 6 [attrs] => Array ( ) ) [838] => Array ( [weight] => 4 [attrs] => Array ( ) ) [1475] => Array ( [weight] => 4 [attrs] => Array ( ) ) [1701] => Array ( [weight] => 4 [attrs] => Array ( ) ) [6184] => Array ( [weight] => 4 [attrs] => Array ( ) ) [1816] => Array ( [weight] => 2 [attrs] => Array ( ) ) ) [total] => 9 [total_found] => 9 [time] => 0.001 [words] => Array ( [mimmi] => Array ( [docs] => 9 [hits] => 46 ) ) )  

我不知道该怎么做,我如何显示结果。

2 个答案:

答案 0 :(得分:2)

此时你想要从sphinx返回的ID并用它们查询你的数据库。

<?php
     $IDs = implode(",",array_keys($result["matches"]));
     $sql = "SELECT * FROM `tbl` WHERE `id` IN ($IDs) ORDER BY FIELD(`id`,$IDs)";
?>

答案 1 :(得分:2)

您在/etc/sphinxsearch/sphinx.conf中声明的字段将在$ result ['matches']中提供:

sql_field_string = my_field  # will be both indexed and stored

这样就无需查询数据库