| Код |
|---|
$dbData = CIBlockElement::getList(
array(),
[
'IBLOCK_ID' => 230,
'PROPERTY_BILL' => "5200014561",
],
false, false,
['ID', 'IBLOCK_ID', 'PROPERTY_BILL']
);
while ($res = $dbData->GetNextElement()) {
echo "<pre>";
print_r($res->GetProperties());
echo "</pre>";
}
|