Created
March 26, 2019 12:19
-
-
Save MasterHans/9757df9323562309300c7aee63e8e3ff to your computer and use it in GitHub Desktop.
1С Битрикс - получаем свойства товара по коду товара и инфоблока
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Получаем значение свойств товара | |
$db_props = CIBlockElement::GetProperty( | |
MAIN_CATALOG_IB_ID, | |
$ob->fields['ID'], | |
array("sort" => "asc"), | |
Array("CODE" => "BREND_TOVARA") | |
); | |
if ($ar_props = $db_props->Fetch()) | |
$PROP = $ar_props["VALUE"]; | |
else | |
$PROP = 'Бренд не инайден!!!'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment