Object of class stdClass could not be converted to string error

前端 未结 6 1060
一生所求
一生所求 2021-01-05 00:12

I have the following string:

{\"Coords\":[{\"Accuracy\":\"65\",\"Latitude\":\"53.277720488429026\",\"Longitude\":\"-9.012038778269686\",\"Timestamp\":\"Fri J         


        
6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-05 00:14

    It was an old question, still answer to make it clear for someone who just encounters it like me.

    try json_encode($traces);

    in my case

    return var_dump(json_encode($result[0]));
    

    the result is:

    string(34) "{"id":1,"content":"test database"}"
    

提交回复
热议问题