gpt4 book ai didi

php - 多维数组

转载 作者:行者123 更新时间:2023-12-05 00:15:53 26 4
gpt4 key购买 nike

我有一个 php 多维数组,如下所示:

$fields = array( array('input', 'title', 'slug', 'keywords'), 
array('textarea', 'content'),
array('radio', 'active', 'active2', 'active3', 'active4', 'active5')
);

我正在访问数组,就像这样。

但是,因为某些数组包含的值比其他数组多,所以我遇到了麻烦,如下所示 $type < 2...我该如何解决这个问题?

for($type = 0; $type < 2; $type++) {
for($field = 0; $field < 2; $field++) {
echo $fields[$type][$field];
}
}

最佳答案

使用 foreach :

foreach ($fields as $values)
{
foreach ($values as $value)
{
echo $value;
}
}

关于php - 多维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6437349/

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