createSelect(); // search input string, this value fails without escaping because of the double-quote $input = 'ATA "133'; // in this case phrase escaping is used (most common) but you can also do term escaping, see the manual // also note that the same can be done using the placeholder syntax, see example 6.3 $helper = $query->getHelper(); $query->setQuery('features:' . $helper->escapePhrase($input)); // this executes the query and returns the result $resultset = $client->select($query); // display the total number of documents found by solr echo 'NumFound: '.$resultset->getNumFound(); // show documents using the resultset iterator foreach ($resultset as $document) { echo '
' . $field . ' | ' . $value . ' |
---|