• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/import/compiler/compiler.php
  • Класс: BitrixSaleLocationImportCompilerCompiler
  • Вызов: Compiler::addLeadingZero
static function addLeadingZero($value, $length)
{
	if(strlen($value) >= $length)
		return $value;

	$diff = abs($length - strlen($value));

	for($i = 0; $i < $diff; $i++)
		$value = '0'.$value;

	return $value;
}