2013-02-08 3 views
-1

나는 ... 하나가 어떻게 디코딩하는 말해 줄 수JSON 디코딩

{"json":{"age":"23","userid":"1","weight":"55","fullname":"goutham"}}; 

다음과 같이 JSON 응답 양식 아이폰 응용 프로그램을 얻고있다

+0

http://php.net/manual/en/function.json-decode.php하는 데 도움이 – koopajah

답변

1

사용 PHP의 기능 : json_decode

<?php 
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; 

var_dump(json_decode($json)); 
var_dump(json_decode($json, true)); 

?> 

출처 : 위에서 언급 한 수동

0

사용 json_decode에서 예

$array = json_decode($string, true); 
/// please note the second parameter 'true' here, it is needed if you want your o/p as array or you will get it as object 

print_r($array); 

심판 : 즉 같은 json_code.userid이 http://php.net/manual/en/function.json-decode.php를 참조

json_decode(); 

json_decode($my_json); 

또는 json_code.age처럼 사용할 수 있습니다

처럼 http://php.net/json_decode

0

나는 우리가 U가 제공 한 JSON 문자열에서 찾고, 여기에 질문을 누락 생각을 참조 할 수 있습니다, 당신은 당신이 속성을 가진 객체를 가지고 있음을 분명히 알 수 있습니다. {연령 : (23) 등이

나는 그것에 json_decode를 수행하여 유하여 개체 속성을 얻을 수있을 것으로 기대

단순히 말을 http://www.json.org/

{JSON은

은 JSON의 사양에서보세요 : $ json-> 세

희망이