Kamis, 16 Mei 2019

Parsing Data Online Situng


https://pemilu2019.kpu.go.id/static/json/hhcw/ppwp/12920/13317/13369/13373/900062184.json


<?php
$x='{"ts": "2019-05-16 04:15:04", "psu": null, "chart": {"21": 15, "22": 154}, "images":
["6-13373-25-C1-PPWP-X7.jpg", "6-13373-25-C1-PPWP-X8.jpg"], "pemilih_j": 240, "suara_sah": 169, "pengguna_j": 170, "suara_total": 170, "suara_tidak_sah": 1}';
echo strlen($x);
echo "<hr>";
?>

<?php
$readjson = $x;//file_get_contents('employees.json') ;
$emp = json_decode($readjson, true);
print_r($emp);
echo"<hr>";

  echo $emp['ts']."<br/>";
   echo $emp['psu']."<br/>";
    echo $emp['chart'][21]."<br/>";
echo $emp['chart'][22]."<br/>";

echo $emp['images'][0]."<br/>";
echo $emp['images'][1]."<br/>";

  echo $emp['pemilih_j']."<br/>";
   echo $emp['pengguna_j']."<br/>";
    echo $emp['suara_total']."<br/>";
  echo $emp['suara_tidak_sah']."<br/>";

//Print data



?>




Tidak ada komentar:

Posting Komentar