Simindey
4/26/2017 - 4:35 PM

ElementTable::getList

ElementTable::getList

<?
\Bitrix\Main\Loader::includeModule("iblock");

$result = ElementTable::getList(array(
  'select'  => array('NAME'), 
  'filter'  => array('ID'=>'1')
));

while($row = $result->fetch())
{
  print_r($row);
}