CBPHelper::stringify

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPHelper
  4. stringify
  • Модуль: 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;
}

Добавить комментарий