2023-05-15 07:04:02 +00:00
|
|
|
<?php
|
|
|
|
//echo "<h1>coingecko.com</h1>";
|
|
|
|
|
|
|
|
// Die Standard-Zeitzone, die verwendet werden soll, setzen.
|
|
|
|
date_default_timezone_set('Europe/Berlin');
|
|
|
|
|
|
|
|
// Holt den letzten Wert für die if Abfrage
|
|
|
|
$xmrdatas = json_decode(file_get_contents("coingecko.json"), true);
|
|
|
|
|
|
|
|
// Liefert den aktuellen Unix-Zeitstempel
|
|
|
|
$zeit = time();
|
|
|
|
|
2023-05-15 07:21:59 +00:00
|
|
|
// Sind 5 Sekunden vergangen?
|
2023-05-15 07:04:02 +00:00
|
|
|
if(($zeit - $xmrdatas['time']) >= 5){
|
2023-05-15 07:21:59 +00:00
|
|
|
//echo "Gespeicherte Zeit: ".$xmrdatas['time']."<br/>Aktuelle Zeit: ".$zeit;
|
2023-05-15 07:04:02 +00:00
|
|
|
|
|
|
|
// Initialize CURL
|
2023-05-15 07:21:59 +00:00
|
|
|
$ch = curl_init('https://api.coingecko.com/api/v3/simple/price?ids=monero&vs_currencies=btc%2Ceth%2Cltc%2Cbch%2Cbnb%2Ceos%2Cxrp%2Cxlm%2Clink%2Cdot%2Cyfi%2Cusd%2Caed%2Cars%2Caud%2Cbdt%2Cbhd%2Cbmd%2Cbrl%2Ccad%2Cchf%2Cclp%2Ccny%2Cczk%2Cdkk%2Ceur%2Cgbp%2Chkd%2Chuf%2Cidr%2Cils%2Cinr%2Cjpy%2Ckrw%2Ckwd%2Clkr%2Cmmk%2Cmxn%2Cmyr%2Cngn%2Cnok%2Cnzd%2Cphp%2Cpkr%2Cpln%2Crub%2Csar%2Csek%2Csgd%2Cthb%2Ctry%2Ctwd%2Cuah%2Cvef%2Cvnd%2Czar%2Cxdr%2Cxag%2Cxau%2Cbits%2Csats&include_market_cap=true&include_24hr_vol=true&include_24hr_change=true&include_last_updated_at=true');
|
2023-05-15 07:04:02 +00:00
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
|
|
|
|
// Store the data:
|
|
|
|
$json = curl_exec($ch);
|
|
|
|
curl_close($ch);
|
|
|
|
|
2023-05-15 07:21:59 +00:00
|
|
|
// Sortiert/Formatiert die Ausgabe
|
|
|
|
$sort_array = json_decode($json, true);
|
2023-05-15 07:04:02 +00:00
|
|
|
$new_sort_array = $sort_array['monero'];
|
2023-05-15 07:21:59 +00:00
|
|
|
// Zeit wird ergänzt
|
|
|
|
$new_sort_array['time'] = $zeit;
|
2023-05-15 07:04:02 +00:00
|
|
|
|
2023-05-15 07:21:59 +00:00
|
|
|
// Werte in die .json gespeichert
|
2023-05-15 07:04:02 +00:00
|
|
|
file_put_contents("coingecko.json", json_encode($new_sort_array));
|
|
|
|
|
2023-05-15 07:21:59 +00:00
|
|
|
// echo "<br/>Sync.<hr/>";
|
2023-05-15 07:04:02 +00:00
|
|
|
|
|
|
|
}//else{
|
|
|
|
//echo "Keine Daten, noch zu früh!<br/><br/>";
|
2023-05-15 07:21:59 +00:00
|
|
|
//echo "Gespeicherte Zeit: ".$xmrdatas['time']."<br/>Aktuelle Zeit: ".$zeit."<br/><br/>Differenz: ".$zeit - $xmrdatas['time']."<br/><hr/>";
|
2023-05-15 07:04:02 +00:00
|
|
|
//}
|
2023-05-15 07:21:59 +00:00
|
|
|
?>
|