- <?php
- $d=date("Ymd");
- $datatxt=file_get_contents("178118_$d.json");
- $data=json_decode($datatxt,true);
- $retlist=[];
- $lastid=$_GET["lastid"];
- for($i=0;$i<count($data);$i++){
- if($data[$i]["datetime"]>$lastid){
- $retlist[]=$data[$i];
- }
- }
- echo json_encode($retlist);
-
- ?>
|