• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/restview/product.php
  • Класс: BitrixCatalogRestViewProduct
  • Вызов: Product::isIndexedArray
protected function isIndexedArray($ary): bool
{
	if (!is_array($ary))
	{
		return false;
	}

	$keys = array_keys($ary);
	foreach ($keys as $k)
	{
		if (!is_int($k))
		{
			return false;
		}
	}
	return true;
}