개발자의 끄적끄적

[php] json_decode 함수 본문

개발/php

[php] json_decode 함수

효벨 2019. 10. 17. 02:00
728x90
반응형

[php] json_decode 함수

$json_data = '{"result":"OK","count":2}';

위처럼 json data가 있다고 가정하면

$data_object = json_decode($json_data);
$data_array = json_decode($json_data, true);
print_r($data_object);
stdClass Object
(
    [result] => "OK"
    [count] => 2
)

$data_object 는 object 형대로 위처럼 출력되고

print_r($data_object);
Array
(
    [result] => "OK"
    [count] => 2
)

$data_array 는 배열 형태로 위처럼 출력됩니다!

 

json_decode("변수",true) <----- 이처럼 true를 넣어줌과 안넣어줌의 차이가 있습니다!

 

꼭 숙지하시고 사용하세요!!!

반응형
Comments