The key of the associative array is dynamically generated. How do I get the \"Key\" of such an array?
$arr = array (\'dynamic_key\' => \'Value\');
What about array_keys()?
It does return an array though...