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.
Did you mean Strings from Solr を取得しているときに、次の警告が表示されます。これから抜け出す方法はありますか?
if (is_object($results->spellcheck)){ $didyoumean = $results->spellcheck->suggestions->collation; } else{ $didyoumean=false; }
前もって感謝します :)
Collation が null であるか、または Real 値で存在するかを確認しますか?
if (isset($results->spellcheck->suggestions->collation)){ $didyoumean = $results->spellcheck->suggestions->collation; else{ $didyoumean=false; }
お役に立てれば :)