これは私の配列です
出力を 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'];
}