From cd9f31d97461f4fd30110763613d54367e817cc2 Mon Sep 17 00:00:00 2001 From: Alpha Date: Sun, 30 Apr 2017 03:41:12 +0200 Subject: [PATCH] Avatare werden nun mittels einer Solo anfrage geladen 1 api call / Sortierung ist noch nicht sicher --- index.php | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/index.php b/index.php index 6be6d88..78f0ede 100644 --- a/index.php +++ b/index.php @@ -37,15 +37,35 @@ $sql = "SELECT * FROM cheaterlist ORDER BY addtime DESC;"; $result = $conn->query($sql); $number = 1; $getplayersummarie ="http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=E8D51260E5DF95AE8A6DA139D6C80288&steamids="; +$avatarid = 0; +$fullids = ""; + +?> + +fetch_assoc()) { + if($row['deleted']) + continue; + + $id = explode( "/", $row['url']); + + $fullids = $fullids . end($id) . ","; + +} +$fullcallurl = $getplayersummarie . $fullids; +$summarie = file_get_contents($fullcallurl); +$temp_summarie = json_decode($summarie, true); + +mysqli_data_seek($result, 0); +?> +fetch_assoc()){ if($row['deleted']) continue; - $id = explode( "/", $row['url']); - $comburl_summarie = $getplayersummarie . end($id); - $summarie = file_get_contents($comburl_summarie); - $temp_summarie = json_decode($summarie, true); - $avatarurl = $temp_summarie["response"]["players"][0]["avatarmedium"]; + + $avatarurl = $temp_summarie["response"]["players"][$avatarid]["avatarmedium"]; $output = " ".$number." @@ -62,6 +82,7 @@ while($row = $result->fetch_assoc()){ } echo $output; $number++; + $avatarid++; } ?>