gpt4 book ai didi

php - 如何访问嵌套数组值

转载 作者:行者123 更新时间:2023-12-05 08:23:09 26 4
gpt4 key购买 nike

我需要在 laravel 电子邮件 View 模板中使用以下数组

$inputs['test']

当我 dd($inputs['test']);

时看起来像这样
Array:1[
"order" => array:2[
0 => 523
1 => 522
]
]

我已经在我的 foreach 循环中试过了,但它不起作用

foreach($inputs['test']->order as $test){
echo $test;}

我需要什么语法来回显顺序嵌套数组中的每个值?

最佳答案

您使用方括号 [] 访问数组值,箭头 -> 访问对象的属性

foreach($inputs['test']['order'] as $test){
echo $test;
}

关于php - 如何访问嵌套数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49165224/

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