我有以下从某处获得的代码,但它似乎不起作用:
function http() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
return $http;
}
有人可以帮忙吗?
我正在尝试做的是在我输入 $http 时返回网站协议
前任:
<a href="<?php echo $http . $websiteurl .'/index.php' ?>">Website URL including Protocol</a>
我的 $websiteurl 已关闭,我似乎无法让它回显 http 与 https。我对功能了解不多,所以我不确定如何解决它。