如何访问多维数组中的数组元素?

发布于 2024-12-17 16:31:28 字数 294 浏览 0 评论 0原文

这是我的数组的表示:

    $arr
    [0]
    [code]='a code'
    [number]='a number'
    [1]
    [code]='a code'
    [number]='a number'
    [2]
    [code]='a code'
    [number]='a number'
    [3]
    .
    .

我正在执行一个 foreach 循环来获取所有被卡住的 [code] 值:我忘记了如何做到这一点。有人可以帮我吗?

Here's a representation of my array:

    $arr
    [0]
    [code]='a code'
    [number]='a number'
    [1]
    [code]='a code'
    [number]='a number'
    [2]
    [code]='a code'
    [number]='a number'
    [3]
    .
    .

I'm doing a foreach loop to get all the [code] values am stuck: I forgot how to do it. Can anyone please help me with it?

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

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

发布评论

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

评论(3

羅雙樹 2024-12-24 16:31:28

您可以将数组转换为 stdClass 类型的对象

$obj = (object) $arr

,但是,您的帖子标题似乎暗示您想要一个对象,但帖子正文似乎您只想访问数组键。

在这种情况下,您可以只使用以下内容。但这取决于“获取所有[代码]值”到底是什么意思。

foreach( $arr as $inner_array ) {
    $codes[] = $inner_array['code']; // Collect them all into a single dimensional array?
    echo $inner_array['code']; // Output it here?
}

You can just cast the array as an object of type stdClass

$obj = (object) $arr

That said however, your post title seems to imply you want an object, but the post body seems like you just want to access an array key.

In which case you can just use the following. But it depends what exactly you mean by 'get all of the [code] values.'

foreach( $arr as $inner_array ) {
    $codes[] = $inner_array['code']; // Collect them all into a single dimensional array?
    echo $inner_array['code']; // Output it here?
}
傲影 2024-12-24 16:31:28

也许是这样的:

foreach($arr as $item) {
    echo 'code: ' . $item['code'];
}

我希望它会有所帮助!

Maybe something like :

foreach($arr as $item) {
    echo 'code: ' . $item['code'];
}

I hope it will help !

儭儭莪哋寶赑 2024-12-24 16:31:28
foreach($arr as $item) {
    echo 'code:'.$item['code'];
}

我希望这有帮助。

foreach($arr as $item) {
    echo 'code:'.$item['code'];
}

I hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文