• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/manager.php
  • Класс: BitrixLandingManager
  • Вызов: Manager::getHttpHost
static function getHttpHost()
{
	static $host = null;

	if ($host === null)
	{
		$context = Application::getInstance()->getContext();
		$host = $context->getServer()->getHttpHost();

		// strip port
		if (mb_strpos($host, ':') !== false)
		{
			[$host] = explode(':', $host);
		}
	}

	return $host;
}