How to parse a JSON string using PHP

后端 未结 4 745
故里飘歌
故里飘歌 2020-12-10 21:34

I have a JSON string that has 1-n numbers of lat/lng records. It looks something like this:

{\\\"lat\\\":37.790388261934424,\\\"lng\\\":-122.46047996826172},         


        
4条回答
  •  春和景丽
    2020-12-10 22:24

    In your case it's probably best to use:

    $array = json_decode(stripslashes("[$input_string]"), 1);
    

    Note that you will lose some precision on your float values in PHP.

提交回复
热议问题