print_r
of an array gives me this output:
Array (
[id-1.txt] => uploads/id-1.jpg
[id-2.txt] => uploads/id-2.jpg
[id-3.txt] => uploads/id-3.jpg
)
How can i echo always the first key value ( so uploads/id-1.jpg
in this case) without knowing the name of the key? Because the name of the keys are changing everytime...
So: catch always the first value which belongs to the first key, whatever the name of the key is...