• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/base.php
  • Класс: Bitrix\Crm\Controller\Base
  • Вызов: Base::removeDotsFromValues
protected function removeDotsFromValues(array $data): array
{
	$result = [];

	foreach($data as $name => $value)
	{
		if(is_array($value))
		{
			$value = $this->removeDotsFromValues($value);
		}
		$result[$name] = str_replace('.', '', $value);
	}

	return $result;
}