CBPHelper::stripUserPrefix

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPHelper
  4. stripUserPrefix
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/helper.php
  • Класс: CBPHelper
  • Вызов: CBPHelper::stripUserPrefix
static function stripUserPrefix($value)
{
	if (is_array($value) && !CBPHelper::IsAssociativeArray($value))
	{
		foreach ($value as &$v)
		{
			if (mb_substr($v, 0, 5) == "user_")
				$v = mb_substr($v, 5);
		}
	}
	else
	{
		if (mb_substr($value, 0, 5) == "user_")
			$value = mb_substr($value, 5);
	}

	return $value;
}

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