• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/Calc/Libs/StringLib.php
  • Класс: BitrixBizprocCalcLibsStringLib
  • Вызов: StringLib::mbUcFirst
private function mbUcFirst($str)
{
	$len = mb_strlen($str);
	$firstChar = mb_substr($str, 0, 1);
	$otherChars = mb_substr($str, 1, $len - 1);

	return mb_strtoupper($firstChar) . $otherChars;
}