API Anahtarları
$api_key = "my_api_key";
$city = "New York";
$url = "https://api.example.com/weather?city=" . urlencode($city) . "&api_key=" . urlencode($api_key);
$response = file_get_contents($url);
$data = json_decode($response, true);
// Do something with the dataLast updated