Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个标头重定向,它是一个随机生成的密钥header("Location: http://mywebsite.com/folder/PAGEKEY"); 在哪里PAGEKEY,如下所示:z4k4IKCL。
header("Location: http://mywebsite.com/folder/PAGEKEY");
PAGEKEY
z4k4IKCL
我的问题是如何从地址中获取密钥?我需要能够链接到 URL,并且不能依赖上一页上使用的信息。
密钥将用于查询 MYSQL 数据库。
$url =$_SERVER['REQUEST_URI'] $parts = explode("/", $url); $pagekey = $parts[2];
你可以使用 $_SERVER['REQUEST_URI']
这会在 urlhttp://mywebsite.com部分之后为您提供 url 上的所有内容。
http://mywebsite.com