-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 に答える