I have a short question:
This is my array:
Array ( [1] => 03 [2] => 02 )
I want to print the value of the lowest key. This is my code:
$result = min(array_keys($myarray));
This prints:
1
But what I need is the value. So the result I want is
03
I tried different variations, for example:
foreach ($result as $key => $value) {
echo $value;
}
But nothing is working. Can you help me?