E.g.
CODE
$array = array("moo" => array("1"=>"test", "3"=>"doo", "2"=>"as"), "blas"=> array("1"=>"tdfest", "3"=>"deroo", "2"=>"asfg");
if I knew the keys I could do:
krsort($array["moo"]);
krsort($array["blas"]);
But I don't know if the key is moo, blas, or whatever. How can I get it to do sort all the arrays one dimension in?
