• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/diskdispatcher.php
  • Класс: CWebDavDiskDispatcher
  • Вызов: CWebDavDiskDispatcher::getContentRange
protected function getContentRange()
{
	$headers = $this->getAllHeaders();
	if(!$headers || !isset($headers['Content-Range']))
	{
		return false;
	}
	$contentRange = $headers['Content-Range'];
	if(!preg_match("/(\d+)-(\d+)\/(\d+)$/", $contentRange, $match))
	{
		return false;
	}
	return array($match[1], $match[2], $match[3]);
}