gpt4 book ai didi

PHP REQUEST_URI

转载 作者:可可西里 更新时间:2023-11-01 12:43:17 28 4
gpt4 key购买 nike

我有以下 php 脚本来读取 URL 中的请求:

$id = '/' != ($_SERVER['REQUEST_URI']) ? 
str_replace('/?id=' ,"", $_SERVER['REQUEST_URI']) : 0;

当 URL 为 http://www.testing.com/?id=123

时使用

但现在我想在 url 字符串中再传递 1 个变量 http://www.testing.com/?id=123&othervar=123

我应该如何更改上面的代码以检索两个变量?

最佳答案

您可以使用正则表达式,也可以继续使用 str_replace

例如。

$url = parse_url($_SERVER['REQUEST_URI']);

if ($url != '/') {
parse_str($url['query']);
echo $id;
echo $othervar;
}

输出将是: http://www.testing.com/123/123

关于PHP REQUEST_URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8653307/

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