json_decode

(PHP 5 >= 5.2.0, PECL json >= 1.2.0)
json_decode - JSON 형식의 문자열 을 인 코딩 합 니 다.
범례
Example #1 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));

?>

이상 루틴 출력:
object(stdClass)#1 (5) {
    ["a"] => int(1)
    ["b"] => int(2)
    ["c"] => int(3)
    ["d"] => int(4)
    ["e"] => int(5)
}

array(5) {
    ["a"] => int(1)
    ["b"] => int(2)
    ["c"] => int(3)
    ["d"] => int(4)
    ["e"] => int(5)
}

좋은 웹페이지 즐겨찾기