Answer the question
In order to leave comments, you need to log in
How to make a check in the search for Bitrix?
Search works like this
$res = CIBlockElement::GetList(Array("SORT" => "DESC", "PROPERTY_REFERENCE" => "ASC"), $arFilter, false, false, $arSelect);
if ( ) { //тут хочу проверить есть ли хоть один результат, вопрос что именно проверять, тк проверка if($res->GetNextElement()) обрубает если результат только один.
while($ob = $res->GetNextElement()) {
$arFields = $ob->GetFields();
//и т.д.
} else {
// когда ничего не найдено
}
Answer the question
In order to leave comments, you need to log in
if($res->SelectedRowsCount() > 0) {
while($ob = $res->GetNextElement()) {
$arFields = $ob->GetFields();
//и т.д.
}
} else {
если ничего не найдено
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question