• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/helper.php
  • Класс: CBPHelper
  • Вызов: CBPHelper::stringify
static function stringify($mixed): string
{
	if (is_array($mixed))
	{
		return implode(', ', static::flatten($mixed));
	}

	return (string)$mixed;
}