A comparison of php json libraries - GGGeek | the wizard of eZ
Goal PHP Json Pear Json Zend json XmlRpc json Encode a php value to JSON string $out = json_encode($data); $value = new Services_JSON(); $out = $value->encode($data); $out = Zend_Json::encode($data); $value = php_jsonrpc_encode($data); $out = $value ......