0

我需要在我的 json 输出中删除双引号,我会解释更多。我得到这个结果:

[{"id":"1","nom":"Magasin Jardins 2","ville":"Paris","latlng":["36.85715,10.127245"]}

我需要删除 latlng 值的引号我想获得那个 latlng”:

[36.85715,10.127245]

这是我的代码

  $qry = "SELECT *FROM magasin";
    $result = mysql_query($qry);

  //  $promotions = array();
    $response = array();
    while($row = mysql_fetch_assoc($result)) {

   // $promotions[]= $row;
 $magasin = array();
        $magasin["id"] = $row["id"];
        $magasin["nom"] = $row["nom"];
        $magasin["ville"] = $row["ville"];
        $lat = $row[latitude];
        $long = $row[longitude];

       $magasin["latlng"][] =floatval($lat).",".floatval($long);;

// push single product into final response array
        array_push($response, $magasin);
    }
     mysql_close($con);



  echo json_encode($response); 
4

1 回答 1

2

代替

$magasin["latlng"][] = floatval($lat).",".floatval($long);

采用

$magasin["latlng"] = array(floatval($lat), floatval($long));

如果在 PHP 5.4+ 上,您可以改用

    $magasin["latlng"] = [floatval($lat), floatval($long)];

这将允许 lat 和 long 值作为数组中的浮点数传递,而不是通过使用.",".to 连接类型转换为字符串。

于 2013-07-21T22:18:42.950 回答