getdata.php 286 B

1234567891011121314
  1. <?php
  2. $d=date("Ymd");
  3. $datatxt=file_get_contents("178118_$d.json");
  4. $data=json_decode($datatxt,true);
  5. $retlist=[];
  6. $lastid=$_GET["lastid"];
  7. for($i=0;$i<count($data);$i++){
  8. if($data[$i]["datetime"]>$lastid){
  9. $retlist[]=$data[$i];
  10. }
  11. }
  12. echo json_encode($retlist);
  13. ?>