RE: [PHP] array_filter function
- From: bnugroho@xxxxxxxxxxxxxxx ("Bagus Nugroho")
- Date: Fri, 28 Mar 2008 23:03:04 +0700
Thanks You,
rgds, bnug
________________________________
From: Robin Vickery [mailto:robinv@xxxxxxxxx]
Sent: Jumat 28-Mar-2008 21:45
To: Bagus Nugroho
Cc: php-general@xxxxxxxxxxxxx
Subject: Re: [PHP] array_filter function
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";'));
- References:
- [PHP] Use of callback on a stream
- From: Olivier Dupuis
- array_filter function
- From: "Bagus Nugroho"
- Re: [PHP] array_filter function
- From: "Robin Vickery"
- [PHP] Use of callback on a stream
- Prev by Date: [PHP] Re: putting variables in a variable
- Next by Date: why won't my array work?
- Previous by thread: Re: [PHP] array_filter function
- Next by thread: [PHP] Use of callback on a stream
- Index(es):
Relevant Pages
|