我有这个 JSON 字符串:
{
"name": "test task1",
"desc": "test desc1",
"id": "1"
}{
"name": "test task1aaaa",
"desc": "test desc1",
"id": "2"
}
但它看起来不正确(JSONLint告诉我)所以 PHPjson_decode()
无法解码它。有什么方法可以将两个 JSON 数组分成两个字符串(或数组是多少字符串)以进行json_decode
解码?