How can I search a value in a multi dimensional array.
I would like to receive all keys looking for a specific date Ex(2012-07-25) in [created]
and receive array[0][0] and array[0][1]
Array
(
[0] => Array
(
[0] => Array
(
[id_store] => 3
[id_product] => 11
[monitored] => 0
[created] => 2012-07-25
)
[1] => Array
(
[id_store] => 3
[id_product] => 12
[monitored] => 0
[created] => 2012-07-25
)
[2] => Array
(
[id_store] => 4
[id_product] => 11
[monitored] => 0
[created] => 2012-07-26
)
)
)