gpt4 book ai didi

PHP 位置 header 绝对路径

转载 作者:可可西里 更新时间:2023-11-01 16:38:44 30 4
gpt4 key购买 nike

<分区>

因为 header("Location: "); header 需要与绝对路径而不是相对路径一起使用,所以我编写了这个函数来使用 $_SERVER 获取绝对路径 变量。

function getAbsolutePath($relativePath = "/site/123/") {
if (isset($_SERVER['HTTPS'])) {
$protocol = 'https';
} else {
$protocol = 'http';
}

$host = $_SERVER['HTTP_HOST'];

$port = $_SERVER['SERVER_PORT'];

$absolutePath = 'Location: ' . $protocol . "://" . $host . ":" . $port . $relativepath;
return $absolutePath;
}

这是完成此操作的完美方法,还是它们有任何更好的替代方法?

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com