如何将 URL 参数列表字符串分解为成对的 [key] => [值] 数组?

发布于 2024-12-29 06:38:11 字数 450 浏览 2 评论 0原文

可能的重复:
将查询字符串解析为数组

如何分解字符串,例如

a=1&b=2&c=3

:它变成:

Array {
 [a] => 1
 [b] => 2
 [c] => 3
}

使用在 & 上分隔的常规 explode() 函数将分隔参数,但不会在 [key] => 中分隔参数。 [值] 对。

谢谢。

Possible Duplicate:
Parse query string into an array

How can I explode a string such as:

a=1&b=2&c=3

So that it becomes:

Array {
 [a] => 1
 [b] => 2
 [c] => 3
}

Using the regular explode() function delimited on the & will separate the parameters but not in [key] => [value] pairs.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

二手情话 2025-01-05 06:38:11

使用 PHP 的 parse_str 函数。

$str = 'a=1&b=2&c=3';
$exploded = array();
parse_str($str, $exploded);
$exploded['a']; // 1

我想知道你从哪里得到这个字符串?如果它是 URL 中问号之后的一部分(URL 的查询字符串),则您已经可以通过超全局 $_GET 数组访问它:

# in script requested with http://example.com/script.php?a=1&b=2&c=3
$_GET['a']; // 1
var_dump($_GET); // array(3) { ['a'] => string(1) '1', ['b'] => string(1) '2', ['c'] => string(1) '3' )

Use PHP's parse_str function.

$str = 'a=1&b=2&c=3';
$exploded = array();
parse_str($str, $exploded);
$exploded['a']; // 1

I wonder where you get this string from? If it's part of the URL after the question mark (the query string of an URL), you can already access it via the superglobal $_GET array:

# in script requested with http://example.com/script.php?a=1&b=2&c=3
$_GET['a']; // 1
var_dump($_GET); // array(3) { ['a'] => string(1) '1', ['b'] => string(1) '2', ['c'] => string(1) '3' )
只等公子 2025-01-05 06:38:11

尝试使用 parse_str()功能:

$str = "first=value&arr[]=foo+bar&arr[]=baz";
parse_str($str, $output);
echo $output['first'];  // value
echo $output['arr'][0]; // foo bar
echo $output['arr'][1]; // baz

Try to use the parse_str() function:

$str = "first=value&arr[]=foo+bar&arr[]=baz";
parse_str($str, $output);
echo $output['first'];  // value
echo $output['arr'][0]; // foo bar
echo $output['arr'][1]; // baz
今天小雨转甜 2025-01-05 06:38:11

像这样的东西会起作用

$str = "a=1&b=2&c=3"
$array = array();
$elems = explode("&", $str);
foreach($elems as $elem){
    $items = explode("=", $elem);
    $array[$items[0]] = $items[1];
}

Something like this will work

$str = "a=1&b=2&c=3"
$array = array();
$elems = explode("&", $str);
foreach($elems as $elem){
    $items = explode("=", $elem);
    $array[$items[0]] = $items[1];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文