{
[2012-05-23] => 1
[2012-05-24] => 1
[2012-05-25] => 1
[2012-05-26] => 1
[2012-05-27] => 1
[2012-05-28] => 11
[2012-05-29] => 11
[2012-05-30] => 12
}
for example this is my array and i just want to get the indexes of array which has a value greater then 10
so in this case the answer must be sounded like that
{
[0] => 2012-05-28
[1] => 2012-05-29
[2] => 2012-05-30
}