index_weights.php 146 B

123456789
  1. <?php
  2. require ("sphinxapi.php");
  3. $cl = new SphinxClient();
  4. $cl->SetIndexWeights(array('index1' => 10, 'index2' => 20));
  5. $cl->Query('query');
  6. ?>