我使用 php 非常糟糕。我不是程序員,只是為我的私人事情做一些事情。我有這樣一個問題,我想從我的光伏生產(chǎn)中下載數(shù)據(jù)。數(shù)據(jù)格式如下。如何分別從php中的一個url下載數(shù)據(jù),將它們分組并發(fā)送到數(shù)組?預(yù)先感謝您的所有幫助。{"sid":62923,"dataunit":"kWh","data":[{"time":"2019-08-01","no":"1","value":"27.7"}, {"time":"2019-08-02","no":"2","value":"24.0"},{"time":"2019-08-03","no":"3" ,"value":"19.9"},{"time":"2019-08-04","no":"4","value":"25.3"},{"time":"2019-08- 05","no":"5","value":"0.0"},{"time":"2019-08-06","no":"6","value":"0.0"}, {"time":"2019-08-07","no":"7","value":"0.0"},{"time":"2019-08-08","no":"8","value":"0.0"},{"time":"2019-08-09","no":"9","value":"0.0"},{"time ":"2019-08-10","no":"10","value":"0.0"},{"time":"2019-08-11","no":"11","value ":"0.0"},{"time":"2019-08-12","no":"12","value":"0.0"},{"time":"2019-08-13", "no":"13","value":"0.0"},{"time":"2019-08-14","no":"14","value":"0.0"},{"time ":"2019-08-15","no":"15","value":"0.0"},{"time":"2019-08-16","no":"16","value":"0.0"},{"time":"2019-08-17","no":"17","value":"0.0"},{"time":" 2019-08-18","no":"18","value":"0.0"},{"time":"2019-08-19","no":"19","value":" 0.0"},{"time":"2019-08-20","no":"20","value":"0.0"},{"time":"2019-08-21","no" :"21","value":"0.0"},{"time":"2019-08-22","no":"22","value":"0.0"},{"time":" 2019-08-23","no":"23","value":"0.0"},{"time":"2019-08-24","no":"24","value":"0.0"},{"time":"2019-08-25","no":"25","value":"0.0"},{"time":"2019- 08-26","no":"26","value":"0.0"},{"time":"2019-08-27","no":"27","value":"0.0" },{"time":"2019-08-28","no":"28","value":"0.0"},{"time":"2019-08-29","no":" 29","value":"0.0"},{"time":"2019-08-30","no":"30","value":"0.0"},{"time":"2019- 08-31","no":"31","value":"0.0"}]}2019-08-25","no":"25","value":"0.0"},{"time":"2019-08-26","no":"26","value":" 0.0"},{"time":"2019-08-27","no":"27","value":"0.0"},{"time":"2019-08-28","no" :"28","value":"0.0"},{"time":"2019-08-29","no":"29","value":"0.0"},{"time":" 2019-08-30","no":"30","value":"0.0"},{"time":"2019-08-31","no":"31","value":" 0.0"}]}2019-08-25","no":"25","value":"0.0"},{"time":"2019-08-
1 回答

拉風(fēng)的咖菲貓
TA貢獻1995條經(jīng)驗 獲得超2個贊
嘗試這個
<?php
$json_url = file_get_contents('Your url goes here');
$data = json_decode($json_url,true);
var_dump($data);
// You can print all of your data here to see if it works
foreach ($data as $items) {
// You can loop trough the data and get it like $items->sid etc
var_dump($items);
}
?>
您需要使用“ file_get_contents ”獲取網(wǎng)址,然后使用json_decode對其進行解碼
然后用 for each 函數(shù)打印出來
- 1 回答
- 0 關(guān)注
- 143 瀏覽
添加回答
舉報
0/150
提交
取消