Here\'s the json text:
{ \"data\": { \"current_condition\": [{ \"cloudcover\": \"75\", \"humidity\": \"63\", \"observation_time\"
json_decode() with TRUE as second parameter gives you an associative array. But you're currently trying to access it as an object.
TRUE
Try the following:
echo $arr['data']['current_condition'][0]['temp_F'];