1
$example = 
  array
    'test' =>
      array(
        'something' => 'value'
      ),
    'whatever' =>
      array(
        'something' => 'other'
      ),
    'blah' =>
      array(
        'something' => 'other'
      )
  );

$example値を持つ要素を含む のサブ配列の数を数えたいと思いますother

これを行う最も簡単な方法は何ですか?

4

2 に答える 2

6

array_filter()必要なものです:

count(array_filter($example, function($element){

    return $element['something'] == 'other';

}));

より柔軟になりたい場合:

$key = 'something';
$value = 'other';

$c = count(array_filter($example, function($element) use($key, $value){

    return $element[$key] == $value;

}));
于 2012-09-02T02:24:52.093 に答える
1

次のことを試すことができます。

$count = 0;
foreach( $example as $value ) {
    if( in_array("other", $value ) )
        $count++;
}
于 2012-09-02T02:28:30.390 に答える