DayZ-Stat-Server/player-live_json.php

134 lines
3.6 KiB
PHP

<?php
ini_set('display_errors', 1);
//error_reporting(E_ALL); // Display all types of error
set_time_limit ( 4 ); // Max execution time is set to 4 seconds
// Read JSON file
$readjson = file_get_contents('statserver.json');
$data = json_decode($readjson);
// class
$name = $data->{'name'};
$map = $data->{'map'};
$password = $data->{'password'};
$game = $data->{'raw'}->{'game'};
$secure = $data->{'raw'}->{'secure'};
$numplayers = $data->{'raw'}->{'numplayers'};
$version = $data->{'raw'}->{'version'};
$tags = $data->{'raw'}->{'tags'};
//$dedicated = $data->{'raw'}->{'rules'}->{'dedicated'};
//$island = $data->{'raw'}->{'rules'}->{'island'};
$connect = $data->{'connect'};
$ping = $data->{'ping'};
$time = "$tags[38]$tags[39]:$tags[41]$tags[42]";
$battleye = substr($tags,0,8);
$hive = substr($tags,18,8);
$players = $data->{'players'};
//if(empty($players))
// $players = "0";
//if (empty($players)) { "0"; }
//$playersuser = substr($players,0,8);
//$players = $data->{'array_filter($players)'};
//$player = $data->{'players'};
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Dayz ToX Server: <?php echo"${name}"; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
</head>
<body>
<br>
<table>
<thead>
<tr>
<td>Server Name</td><td> IP server</td> <td> Ping </td><td> Player Info</td> <td> Joueurs</td><td> Version</td>
</tr>
</thead>
<tr>
<td><?php print_r($name); ?></td>
<td><?php print_r($connect); ?></td><td><?php print_r($ping); ?></td>
<!--<td><?php print_r($time); ?></td>-->
<td><?php echo "☠ " . count($players);?></td>
<td><?php print_r($numplayers); ?></td><td><?php print_r($version); ?></td>
</tr>
</table>
<br>
<table>
<thead>
<tr>
<td_>Player: <?php if(count($players) == 0) { echo " (0 joueurs) "; } else { echo " ☠ ONLINE ☠ " ; } ?></td_>
</tr>
</thead>
<tr>
<!-- <td>Name</td>-->
<td><?php
if(count($players) == 0)
{
echo " (En attente de survivants) ";
} else {
echo " " . $numplayers . " Playing in the server" ;
}
// print_r(str_split("$players",1));
// print_r("$players",1);
// $uplayer = array(print_r($players));
// print_r($uplayer);
//print_r($players)[0];
// echo print_r($players) . " = " . $numplayers;
//ok
// echo "</td><td><b>print_r</b> ";print_r($players);
?>
</td>
</tr>
</table>
<!-- ? php
echo "<hr>";
echo "<br><u>Resultat</u><br>";
echo "<br><b>Server Name</b>:<i> ${name} </i>\n";echo "<br>";
echo "<b>Map</b>: ${map} <br>";
echo "<b>Game</b>: ${game}<br>";
echo "<b>IP</b>: ${connect}<br>";
echo "Secure: ${secure}<br>";
echo "<b>Version</b>: ${version}<br>";
//echo "<b>Island</b>: ${island}<br>";
//echo "<b>dedicated</b>: ${dedicated}<br>";
echo "<b>Ping</b>: ${ping}<br>";
echo "<b>Time</b>: $time <br>";
echo "<b>Nombre Joueurs</b>: ${numplayers}<br>";
echo "<b>Players</b>: "; if(count($players) == 1) {echo "il y a des joueurs"; } else {echo "0 player" ;}
echo "<br>";
echo "<b>Tags:</b> ($tags)"; //printf("[%0.45s]<br>",$tags); //print_r($tags);
echo "<br><b>hive</b>: ${hive}<br>";
echo "<b>Battleye</b>: ${battleye}";
echo "<hr>";
? -->
<!--
if(empty( $arr )) {...} //checks if there are any elements in the array
if($arr) {...} //checks if there are any elements in the array
if(array_shift( $arr )) {...} //Check the presence of the first element
if($arr[0]) {...} //Check the first index
-->
</body>
</html>