CBPCalc::functionUrlencode

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPCalc
  4. functionUrlencode
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/calc.php
  • Класс: CBPCalc
  • Вызов: CBPCalc::functionUrlencode
private function functionUrlencode($args)
{
	$ar = $this->ArrgsToArray($args);
	$str = array_shift($ar);

	if (!is_scalar($str))
	{
		if (is_array($str))
		{
			$str = implode(", ", CBPHelper::MakeArrayFlat($str));
		}
		else
		{
			return null;
		}
	}

	$str = (string) $str;
	return urlencode($str);
}

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