Converting Object to JSON and JSON to Object in PHP, (library like Gson for Java)

后端 未结 4 1965
旧时难觅i
旧时难觅i 2020-11-28 04:52

I am developing a web application in PHP,

I need to transfer many objects from server as JSON string, is there any library existing for PHP to convert object to JSON

4条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 05:26

    json_decode($json, true); 
    // the second param being true will return associative array. This one is easy.
    

提交回复
热议问题