Heim >Backend-Entwicklung >PHP-Tutorial >php-删除Json输出的引号

php-删除Json输出的引号

WBOY
WBOYOriginal
2016-06-02 11:34:481662Durchsuche

phpjsonandroid

删除json输出的双引号:
[{"id":"1","nom":"Magasin Jardins 2","ville":"Paris","latlng":["36.85715,10.127245"]}

latlng值:[36.85715,10.127245]

代码:

<code>  $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); </code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php-GCM PHP发送到设备 Nächster Artikel:为什么php这样写会死循环