Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Below is the relevant code in my application.....

<?
$jsonData   = file_get_contents($url);
        $data = json_decode($jsonData, TRUE);
        $lat = $data['results']['0']['geometry']['location']['lat'];
        $lng = $data['results']['0']['geometry']['location']['lng'];
        $formattedAddress = $data['results']['0']['formatted_address'];
        $acomp = $data['results']['0']['address_components'];
        foreach ($acomp as $acompArray) {
            if (in_array("neighborhood", $acompArray["types"])) {
                $neighborhood = $acompArray["long_name"];
            }
        }
$acomp = $data['results']['0']['address_components'];
foreach ($acomp as $acompArray) {
    if (in_array("neighborhood", $acompArray["types"])) {
         $neighborhood = $acompArray["long_name"];
    }
}
?>

Below is the JSON Response From Google's Geocoder API (one of the examples that broke)

{
   "results" : [
      {
         "address_components" : [
            {
               "long_name" : "3900",
               "short_name" : "3900",
               "types" : [ "street_number" ]
            },
            {
           "long_name" : "Winchell Avenue",
           "short_name" : "Winchell Ave",
           "types" : [ "route" ]
        },
        {
           "long_name" : "Oakland/Winchell",
           "short_name" : "Oakland/Winchell",
           "types" : [ "neighborhood", "political" ]
        },
        {
           "long_name" : "Kalamazoo",
           "short_name" : "Kalamazoo",
           "types" : [ "locality", "political" ]
        },
        {
           "long_name" : "Kalamazoo",
           "short_name" : "Kalamazoo",
           "types" : [ "administrative_area_level_2", "political" ]
        },
        {
           "long_name" : "Michigan",
           "short_name" : "MI",
           "types" : [ "administrative_area_level_1", "political" ]
        },
        {
           "long_name" : "United States",
           "short_name" : "US",
           "types" : [ "country", "political" ]
        },
        {
           "long_name" : "49008",
           "short_name" : "49008",
           "types" : [ "postal_code" ]
        }
     ],
     ---A LOT MORE BUT DELETED THE IRRELEVANT PORTIONS---
}

The problem appears to happen with the neighborhood 'Oakland/Winchell', my theory is that it contains a '/' which appears to make it return nothing... How do i fix this?

share|improve this question
The / ought to be escaped. PHPs json_decode however has typically no problems with either. print_r() whatever you've got. – mario Feb 23 at 20:14

1 Answer

$data ='{
   "results" : [
        {
             "address_components" : [
                {
                   "long_name" : "3900",
                   "short_name" : "3900",
                   "types" : [ "street_number" ]
                },
                {
                   "long_name" : "Winchell Avenue",
                   "short_name" : "Winchell Ave",
                   "types" : [ "route" ]
                },
                {
                   "long_name" : "Oakland/Winchell",
                   "short_name" : "Oakland/Winchell",
                   "types" : [ "neighborhood", "political" ]
                }
            ]
        }
     ]
}';

$data = json_decode($data); // after json_decode function `$data` become object so you've to manipulate with `->` in your foreach function


foreach($data->results as $arr){
    foreach($arr->address_components as $v){
        if (in_array("neighborhood",$v->types)){
            echo $v->long_name . "<br>";
        }
    }
}

Note: json_decode function will take care of unneccessary symbols such as /

share|improve this answer
I am doing json_decode - i forgot to include it in the original code... sorry about that :( – Zachary Lassiter Feb 23 at 20:31
@ZacharyLassiter You've to decode data like json_decode($data) NOT json_decode($data,true) because in true case it becomes array not object – crypticous Feb 23 at 20:32
thats the assoc parameter... – Zachary Lassiter Feb 23 at 20:43
@ZacharyLassiter when you have optional parameter in json_decode function data becomes array (in that case it will not handle /) , you have to decode it to object. See documentation which I've posted too – crypticous Feb 23 at 20:48
@ZacharyLassiter Also try to copy and paste my code in your test file and observe how it is working ... – crypticous Feb 23 at 20:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.