簡體   English   中英

如何從json url獲取特定數據

[英]How to get particular data from json url

我在 php url 文件名中有以下 Json 數據:house.php

{
"Error": "",
"ErrorCode": 0,
"Guid": "",
"Id": 0,
"Success": true,
"Value": [
{
"MAIN": 225,
"PHASE": 219418523,
"G": "7TH Division",
"GI": "2031892",
"DOOR": "8907",
"Gate": {
    "RG": 2,
    "BNS": "4 Window",
    "BS": {
    "SB1": 2
    },
    "TQ": [
    {
        "Key": 1,
        "Value": {
        "T1": 2
        }
    },
    {
        "Key": 2,
        "Value": {}
    }
    ],
    "MR": -1,
    "MS": 600
},
"AA": "81",
"AI": "8745524"
},
{
"MAIN": 300,
"PHASE": 219418523,
"G": "8TH Division",
"GI": "4526892",
"DOOR": "8877",
"GATE": {
    "RG": 2,
    "BNS": "5 Window",
    "BS": {
    "SB1": 2
    },
    "TQ": [
    {
        "Key": 1,
        "Value": {
        "T1": 2
        }
    },
    {
        "Key": 2,
        "Value": {}
    }
    ],
    "MR": -1,
    "MS": 600
},
"AA": "91",
"AI": "8758421"
}]}

我需要單獨的特定數據 "G"、"G1"、"DOOR"、"AA"、A1" 才能顯示在我的新 php 文件中:

json 格式的 completehouse.php 給出什么代碼來獲取特定數據。

    <?php
$url="house.php";
$text = file_get_contents($url);
header('Content-Type: application/json');
echo $text;
?>

目前我每次使用轉換數據查詢手動使用https://codebeautify.org/online-json-editor : [*].{G: G, G1: G1, DOOR: DOOR, AA: AA, AI: AI並獲得輸出

{
      "Error": "",
      "ErrorCode": 0,
      "Guid": "",
      "Id": 0,
      "Success": true,
      "Value": [
{
          "G": "7TH DIVISION",
          "G1": "2031892",
          "DOOR": "8907",
          "AA": "81",
          "AI": "8745524"
        },
{
          "G": "8TH DIVISION",
          "G1": "4526892",
          "DOOR": "8877",
          "AA": "85",
          "AI": "8759544"
        }
      ]
    }

請有人幫助我修復我的手工工作並節省我的時間。

您可以decode您的 json,然后獲得您想要的確切值。

$json = '....';
$parsed = json_decode($json,true);
$result = [];
if($parsed['Success']){ // check if your api json response is true. 
    foreach($parsed['Value'] as $val){
        if($val['AI']> = 9000000){
        $result[] = [
            "G"=> $val['G'],
            "GI"=> $val['GI'],
            "DOOR"=> $val['DOOR'],
            "AA"=> $val['AA'],
            "AI"=> $val['AI']
         ];
         }
         // or what you want.
    }
}

echo json_encode($result);

演示

由於您只需要操作 Value 列,因此下面的代碼將保持所有值相同,但從 Value 中獲取特定列。

$url="house.php";
$text = file_get_contents($url);

$data = json_decode($text, true);

if ($data['Success'] === true) {
    $v = [];
    $columns = ["G", "GI", "DOOR", "AA", "AI"];
    for ($i = 0; $i< count($data['Value']); $i++) {
        foreach ($data['Value'][$i] as $key => $val) {
            if (in_array($key, $columns)) {
                $v[$key] = $val;
            }
        }
        $data['Value'][$i] = $v;
    }
}

$text = json_encode($data);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM