• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_counter.php
  • Класс: CAllSocNetLogCounter
  • Вызов: CAllSocNetLogCounter::implodeArrayOfIntegers
static function implodeArrayOfIntegers(array $list = []): string
{
	return implode(', ', array_map(static function($item) {
		return (int)$item;
	}, $list));
}