I will explain clearly
$array = array("1" => array(0 =>"aa",1 =>"bb", 2 => "cc",3=>"dd"),
"2" => array(0 =>"aa1",1 =>"bb1", 2 => "cc1",3=>"dd1"));
In this two dimension are
$array2[$a][$b];
I know $a value and $b is unknown
If I using $a =1, I want to filter array(0 =>"aa",1 =>"bb", 2 => "cc",3=>"dd") this array
But I need to get the second array element. Any function is available to do that?
2and then remove it from the array (throw-out / bring-out).