-4

这是我的数组 在此处输入图像描述

我希望输出为 Small、Medium、Large 如何获得它

4

3 回答 3

4
$output = array();
foreach ($array as $el) $output[]= $el["label"];
print_r($output);

php 5.5+

$output = array_column($array, "label");
print_r($output);
于 2013-06-24T13:18:46.017 回答
0

要访问正确的索引,只需将其视为数组数组。

$options[0]['label']
$options[1]['label']
$options[2]['label']

语法可能会因您使用的语言而异。为什么要构建一个您不知道如何访问...中的元素的数组?

于 2013-06-24T13:19:32.107 回答
0

我得到了我的解决方案

   $c= count($options);
for ( $i=0; $i < $c; $i++)
    { 
        echo $options[$i]['label'];
    }  
于 2013-06-24T13:20:06.423 回答