gpt4 book ai didi

php - 如何通过 $_GET 使用较少的变量

转载 作者:行者123 更新时间:2023-11-28 12:07:38 25 4
gpt4 key购买 nike

我注意到,而不是使用:

http://yoursite.com/index.php?page=4

我可以使用:

http://yoursite.com/index.php?4

如何在 php 和 JavaScript 中执行此操作?

最佳答案

在您发布的示例中,现在 4 是键而不是值。

如果您通过查询字符串仅传递一个参数,这是可行的,否则如果没有参数的键,您将无法在 PHP 中知道什么是什么。

在特定示例中,您可以在 PHP 中像这样获取它

$id = null
if(!empty($_GET)){
$keys = array_keys($_GET);

// verify that the first key contains only digits, and use it as id
// ctype_digit does not work here because the key is now an int so use is_numeric
if(is_numeric($keys[0]))
$id = $keys[0];
}

我不知道你想用 Javascript 做什么。

此外,如果您尝试生成 SEO 友好的 URL,我建议您查看 URL Rewriting .

关于php - 如何通过 $_GET 使用较少的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7538918/

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