field_weights.php 146 B

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