<?
$res = CIBlockElement::GetByID($_GET["371"]);
if($ar_res = $res->GetNext())
echo $ar_res['PROPERTIES']['slogan']['VALUE'];
echo $ar_res['PROPERTIES']['copy']['VALUE'];
?>
$resElement = \CIBlockElement::GetList(
[],
[
'IBLOCK_ID' => 5,
'ID' => 371,
],
false,
false,
[
'ID',
'IBLOCK_ID',
'PROPERTY_SLOGAN',
'PROPERTY_COPY'
]
);
if ( !($element = $resElement->getNext() ) )
{
echo "Элемент не найден";
return;
}
var_dump($element);