Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SolrにSolrPhpClient UIを使用しています。ここでは、Solr アプリケーションの場合は正常に機能しますが、SolrPhpClient を使用している場合、この入力は正常に機能しません。 UI。つまり、AND と OR で同じ結果が得られます。SolrPhpClient UI の場合、値 'AND'/'OR' を動的に渡したい。どんな助けでも大歓迎です。
$results = $solr->search($searchterm, 0, $limit,$option);Search が Apache_Solr_Service クラスの関数である場合、このようにオプション (AND/OR) を渡しました。検索機能では、オプションの値を のように params 配列に代入しました$params['q.op'] = $option;。AND/ORオプションに応じて結果が得られました。
$results = $solr->search($searchterm, 0, $limit,$option);
$params['q.op'] = $option;