Search a multi-dimensional array for certain values

前端 未结 2 992
野趣味
野趣味 2021-01-16 23:59

I have a multi-dimensional array in the following format:

[0] = (
    \'id\' => \'1\',
    \'type\' => \'fish\', 
    \'owner\' => \'bob\',
)

[1] =         


        
2条回答
  •  孤独总比滥情好
    2021-01-17 00:15

    you must iterate array like:

    foreach ($array as $i => $values) {
        print "$i {\n";
        foreach ($values as $key => $value) {
            print "    $key => $value\n";
        }
        print "}\n";
    }
    

    and then check for 'type' key value.... then record which is matched must copy it to new array...

提交回复
热议问题