我需要使用哪些变量在浏览器中构建确切的URL?
e.g。 [protocol][domain][path][get params]
所以我希望能够包含http://example.com/folder/file.php?something=value
但是我不知道我可以使用哪些$_SERVER
变量来构建这个字符串?
答案 0 :(得分:3)
您可以使用'PHP_SELF','SERVER_PROTOCOL','QUERY_STRING'$ _SERVER元素来获取完整路径。
要知道所有可用的$ _SERVER元素,请查看以下页面
答案 1 :(得分:3)
function current_url() {
if ($_SERVER['HTTPS'] == "on") {
$current_url = "https://";
} else {
$current_url = "http://";
}
if ($_SERVER['SERVER_PORT'] != "80") {
$current_url .= $_SERVER['SERVER_NAME'] . ":" . $_SERVER['SERVER_PORT'] . $_SERVER['REQUEST_URI'];
} else {
$current_url .= $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
}
return $current_url;
}
答案 2 :(得分:2)