Save dies das - PHP Online
Form of PHP Sandbox
Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php
in the places where the PHP script should be executed.
Result of php executing
Full code of Save dies das.php
- <?php
- $jsonData = '[{"teamId":0,"playerId":84632,"playerName":"Flo_McFly","distance":23.660475},{"teamId":2,"playerId":89711,"playerName":"Carlos_Trouble","distance":0.0},{"teamId":2,"playerId":89711,"playerName":"Max_Mustermann (UG)","distance":15.0}]';
- $data = json_decode($jsonData);
- $sortedData = array();
- foreach ($data as $key => $item) {
- $sortedData[$item->teamId][$key] = $item;
- }
- ksort($sortedData, SORT_NUMERIC);
- echo "<pre>".print_r($sortedData, 1)."</pre>";