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
json_decode($json, true); // the second param being true will return associative array. This one is easy.