Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created May 31, 2017 04:41
Show Gist options
  • Save qwersk/37c5be2b286ea4b5a130daffc2e9a9a1 to your computer and use it in GitHub Desktop.
Save qwersk/37c5be2b286ea4b5a130daffc2e9a9a1 to your computer and use it in GitHub Desktop.
GET ELEMENT PROPERTIES #BITRIX
<?php
$db_props = CIBlockElement::GetProperty($item["IBLOCK_ID"], $item["ID"], "sort", "asc", array());
$PROPS = array();
while($ar_props = $db_props->Fetch()){
$PROPS[$ar_props['CODE']] = $ar_props['VALUE'];
echo $PROPS[$ar_props['CODE']] . "<br />";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment