bolle
Aktives Mitglied
- Mitglied seit
- 10 Apr 2006
- Beiträge
- 1,437
- Punkte für Reaktionen
- 0
- Punkte
- 36
@ronny_b
so sieht der Code aktuell bei mir aus...
passt das?
so korrekt?!
so sieht der Code aktuell bei mir aus...
passt das?
Code:
public function doUpdate() {
// download google weather XML into local file for caching
$city = urlencode( $this->config['city'] );
$curl = curl_init();
$file = fopen("cache/weather.tmp", "w");
if ($file)
{
curl_setopt($curl, CURLOPT_URL, utf8_encode("http://www.google.de/ig/api?weather=$city&oe=UTF8"));
curl_setopt($curl, CURLOPT_FILE, $file);
curl_exec($curl);
curl_close($curl);
fclose($file);
}
if(filesize("cache/weather.tmp") > 1000) {
copy ("cache/weather.tmp", "cache/weather.xml");
}
so korrekt?!
Zuletzt bearbeitet: