<?php
function getWeather($city)
{
$jsn = file_get_contents('http://api.openweathermap.org/data/2.5/weather?q='.$city.',uk&appid=32ae008b1c7259324aa50450687fabf5&units=metric');
$jsn = json_decode($jsn);
echo $jsn->main->temp; // Выводит температуру
echo '<br>'; // Перевод строки
echo $jsn->main->pressure; // Выводит pressure
echo '<br>'; // Перевод строки
echo $city; // Выводит город
}
// Вызов функции:
getWeather('London');