1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

code golf SITE_URL()

This commit is contained in:
Rouji 2021-08-29 23:01:59 +02:00
parent 7d5c9719c2
commit c91f55d22b

View File

@ -19,16 +19,8 @@ class CONFIG
public static function SITE_URL()
{
if (isset($_SERVER['HTTP_HOST']))
{
$url = 'http';
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off')
{
$url .= 's';
}
$url .= '://' . $_SERVER['HTTP_HOST'] . '/';
return $url;
}
$proto = $_SERVER['HTTPS'] ?? true ? 'http' : 'https';
return "$proto://{$_SERVER['HTTP_HOST']}/";
}
};