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:
parent
7d5c9719c2
commit
c91f55d22b
12
index.php
12
index.php
@ -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']}/";
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user