Displaying 1 result from an estimated 1 matches for "spellings_end".
2009 Mar 02
0
Xapian, PHP bindings and
...$enquire->set_query($query);
$matches = $enquire->get_mset(0, 100);
//correction spelling
echo '<hr />';
$i = $database->spellings_begin();
while( ! $i->equals( $database->spellings_end())) {
var_dump( $i );
}
echo '<hr />';
// Display the results.
print $matches->get_matches_estimated() .' results found:<br
/>'."\n";...