0

如何获取二维 PHP 数组的 ID?

Array
(
    [4] => Test
    [6] => This is a test
    [9] => 19
    [15] => Bla Bla Bla
    [appid] => 19746
)

这就是我从字符串创建数组的方式:

$str = '4=Test&6=This is a test&9=19&15=Bla Bla Bla&appid=19746';
$result = array();
parse_str($str, $result);
print_r($result);

foreach ($result as $part) {
    print_r("id: $id\n"); // I need to get the ID here
    print_r("part: $part \n");
}
4

3 回答 3

3

使用“双箭头运算符”来实现这一点。

来自PHP 运算符:双箭头和单箭头

双箭头运算符“=>”用作数组的访问机制。这意味着它左侧的内容将在数组上下文中与右侧的内容具有对应的值。这可用于将任何可接受类型的值设置为数组的相应索引。索引可以是关联的(基于字符串的)或数字的。

所以你的代码将是:

foreach ($result as $id => $part) {
    print_r("id: $id\n");
    print_r("part: $part \n");
}

还要考虑oezi的评论:

[...] 请注意,您在这里不是在谈论二维数组 - 它只是一个带有关联键的简单数组。

于 2013-09-25T10:25:00.353 回答
1
foreach ($result as $id => $part) {
    print_r("id: $id\n"); // Now you get the ID here
    print_r("part: $part \n");
}
于 2013-09-25T10:25:09.153 回答
0
foreach ($result as $id => $part) {
    print_r("id: $id\n"); // I need to get the ID here
    print_r("part: $part \n");
}
于 2013-09-25T10:26:17.323 回答