update : 2015.11.03
php.shukuma.com검색:
|
json_decode(PHP 5 >= 5.2.0, PECL json >= 1.2.0, PHP 7) json_decode — JSON 문자열 디코드 설명JSON 인코드 문자열을 받아서 PHP 변수로 변환합니다. 예제
Example #1 json_decode() 예제
<?php 위 예제의 출력: 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) } Example #2 또다른 예제
<?php Example #3 json_decode()를 사용하는 일반적인 실수
<?php 주의
Caution
이 함수는 JSON 인코드 데이터가 127 원소보다 깊으면 false를 반환합니다. 변경점
|