On 28/03/2008, Bagus Nugroho <bnugroho@xxxxxxxxxxxxxxx> wrote: > Hello, > > If I have an array like this > $dataArray = array(0=>array('type'=>'da'), 1=>array('type'=>'wb'), 2=>array('type'=>'da'); > > How I can filtering to get only 'da' only, like this > > $newDataArray = array(0=>array('type'=>'da'),2=>array('type'=>'da')) $newDataArray = array_filter($dataArray, create_function('$a','return $a["type"] == "da";')); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php