dongxie8856 2014-02-01 10:03
浏览 41
已采纳

在PHP中解析json字符串

    {
   "results" : [
      {
         "address_components" : [
            {
               "long_name" : "New Delhi",
               "short_name" : "New Delhi",
               "types" : [ "locality", "political" ]
            },
            {
               "long_name" : "West Delhi",
               "short_name" : "West Delhi",
               "types" : [ "administrative_area_level_2", "political" ]
            },
            {
               "long_name" : "Delhi",
               "short_name" : "DL",
               "types" : [ "administrative_area_level_1", "political" ]
            },
            {
               "long_name" : "India",
               "short_name" : "IN",
               "types" : [ "country", "political" ]
            }
         ],
         "formatted_address" : "New Delhi, Delhi, India",
         "geometry" : {
            "bounds" : {
               "northeast" : {
                  "lat" : 28.88981589999999,
                  "lng" : 77.34181459999999
               },
               "southwest" : {
                  "lat" : 28.4010669,
                  "lng" : 76.8396999
               }
            },
            "location" : {
               "lat" : 28.635308,
               "lng" : 77.22496
            },
            "location_type" : "APPROXIMATE",
            "viewport" : {
               "northeast" : {
                  "lat" : 28.88981589999999,
                  "lng" : 77.34181459999999
               },
               "southwest" : {
                  "lat" : 28.4010669,
                  "lng" : 76.8396999
               }
            }
         },
         "types" : [ "locality", "political" ]
      }
   ],
   "status" : "OK"
}

How do i parse the above json string with php

Trying the following code out but no success:

   $url = file_get_contents("http://maps.googleapis.com/maps/api/geocode/json?address=Delhi&sensor=true");


     $json = json_decode($url);


foreach($json->results as $item) {
        $location_item = array(
            'address' => $item->formatted_address,

        );

    }

I am getting blank page the code doesn't work please help i am new to php

  • 写回答

1条回答 默认 最新

  • duan97689 2014-02-01 10:27
    关注

    I am getting blank page the code doesn't work please help i am new to php

    Your code actually works , maybe you are not printing the data that is why you are getting a blank page.

    Tested

    <?php
    $url = file_get_contents("http://maps.googleapis.com/maps/api/geocode/json?address=Delhi&sensor=true");
    $json = json_decode($url);
    foreach($json->results as $item) {
        $location_item = array(
            'address' => $item->formatted_address,
    
        );
    
    }
    
    print_r($location_item);
    

    OUTPUT :

    Array
    (
        [address] => New Delhi, Delhi, India
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 关于用python写支付宝扫码付异步通知收不到的问题
  • ¥50 vue组件中无法正确接收并处理axios请求
  • ¥15 隐藏系统界面pdf的打印、下载按钮
  • ¥15 MATLAB联合adams仿真卡死如何解决(代码模型无问题)
  • ¥15 基于pso参数优化的LightGBM分类模型
  • ¥15 安装Paddleocr时报错无法解决
  • ¥15 python中transformers可以正常下载,但是没有办法使用pipeline
  • ¥50 分布式追踪trace异常问题
  • ¥15 人在外地出差,速帮一点点
  • ¥15 如何使用canvas在图片上进行如下的标注,以下代码不起作用,如何修改