这是我的数组
我希望输出为 Small、Medium、Large 如何获得它
$output = array();
foreach ($array as $el) $output[]= $el["label"];
print_r($output);
php 5.5+
$output = array_column($array, "label");
print_r($output);
要访问正确的索引,只需将其视为数组数组。
$options[0]['label']
$options[1]['label']
$options[2]['label']
语法可能会因您使用的语言而异。为什么要构建一个您不知道如何访问...中的元素的数组?
我得到了我的解决方案
$c= count($options);
for ( $i=0; $i < $c; $i++)
{
echo $options[$i]['label'];
}