gpt4 book ai didi

php - $_SERVER ['REQUEST_URI' ] 和 $_GET ['q' ] 有什么区别?

转载 作者:IT王子 更新时间:2023-10-29 01:19:36 25 4
gpt4 key购买 nike

$_SERVER['REQUEST_URI']$_GET['q'](在 Drupal 中使用)有什么区别?

最佳答案

给定这个示例 url:

http://www.example.com/some-dir/yourpage.php?q=bogus&n=10

$_SERVER['REQUEST_URI'] 会给你:

/some-dir/yourpage.php?q=bogus&n=10

$_GET['q'] 会给你:

伪造

换句话说,$_SERVER['REQUEST_URI'] 将包含完整的请求路径,包括 querystring . $_GET['q'] 将为您提供查询字符串中参数 q 的值。

关于php - $_SERVER ['REQUEST_URI' ] 和 $_GET ['q' ] 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4730798/

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