PHP로 JSON 파일을 파싱하려면 어떻게해야합니까? PHP를 사용하여 JSON 파일을 구문 분석하려고했습니다. 그러나 나는 지금 붙어 있습니다. 이것은 내 JSON 파일의 내용입니다. { "John": { "status":"Wait" }, "Jennifer": { "status":"Active" }, "James": { "status":"Active", "age":56, "count":10, "progress":0.0029857, "bad":0 } } 그리고 이것은 내가 지금까지 시도한 것입니다. 가장 우아한 솔루션 : $shipments = json_decode(file_get_contents("shipments.js"), true); print_r($shipments); json 파일은 BOM없이 ..